js 单例模式
Posted Ajanuw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 单例模式相关的知识,希望对你有一定的参考价值。
使用静态属性保存第一次示例对象,在以后的实例中,都将返回这个。
class Ajanuw {
static __self?: Ajanuw;
constructor(public name: string) {
return this.__Ajanuw();
}
private __Ajanuw() {
if (!Ajanuw.__self) {
Ajanuw.__self = this;
}
return Ajanuw.__self;
}
}
let a = new Ajanuw("ajanuw");
console.log(a.name); // ajanuw
let b = new Ajanuw("bbb");
console.log(a.name); // ajanuw
以上是关于js 单例模式的主要内容,如果未能解决你的问题,请参考以下文章