js单例模式

Posted IT-HourseMan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js单例模式相关的知识,希望对你有一定的参考价值。

function Sequence(){
window.singleSequence;//这样定义很不友好,没找到好的方法,所以先这样了
if (window.singleSequence === undefined) {
window.singleSequence = (function createGenerator(){
// 缓存单例的变量
var instance;
function next(){
if (instance === undefined) {
instance = new Construct();
}
return instance.start++;
}
function Construct(){
this.start =1;
}
return {
next: next
}})();
}
return window.singleSequence;
}

以上是关于js单例模式的主要内容,如果未能解决你的问题,请参考以下文章

用JS来理解设计模式—— 单例模式

JS设计模式1-单例模式

JS设计模式一:单例模式

设计模式——JS中的单例模式应用

js 单例模式笔记

js设计模式-单例模式