我有2個Obj:我想知道如果他們是Singleton?JavaScript - 什麼是單例類?
a。
var OBJ = function() {
}
OBJ.prototype = {
setName : function (name) {
this.name = name;
},
getName : function() {
return this.name;
}
}
b。
var OBJ = {
setName : function (name) {
this.name = name;
},
getName : function() {
return this.name;
}
}
可能重複?我不會繼續編輯它。 – Blender 2013-02-26 07:13:52
@Blender我不知道我不能在代碼中創建第二個塊。我不知道爲什麼我看不到工具欄並預覽它。 – Anar 2013-02-26 07:15:14
這將是有幫助的:http://www.hardcode.nl/subcategory_1/article_526-singleton-examples-in-javascript.htm – cclerville 2013-02-26 07:20:36