我是靠谱客的博主 糊涂电话,最近开发中收集的这篇文章主要介绍ES6中实现单例模式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ES6中实现单例模式

1、通过构造函数
class SingletonApple {
constructor(name, creator) {
//首次使用构造器实例
if (!SingletonApple.instance) {
this.name = name;
this.creator = creator;
//将this挂载到SingletonApple这个类的instance属性上
SingletonApple.instance = this;
}
return SingletonApple.instance;
}
}

2、通过静态方法

class SingletonApple {
constructor(name, creator) {
this.name = name;
this.creator = creator;
}
//静态方法
static getInstance(name, creator) {
if(!this.instance) {
this.instance = new SingletonApple(name, creator);
}
return this.instance;
}
}

最后

以上就是糊涂电话为你收集整理的ES6中实现单例模式的全部内容,希望文章能够帮你解决ES6中实现单例模式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(31)

评论列表共有 0 条评论

立即
投稿
返回
顶部