看上去是用閉包實現(xiàn)了一個單例模式構造類。
西鄉(xiāng)塘網站制作公司哪家好,找成都創(chuàng)新互聯(lián)!從網頁設計、網站建設、微信開發(fā)、APP開發(fā)、成都響應式網站建設等網站項目制作,到程序開發(fā),運營維護。成都創(chuàng)新互聯(lián)成立與2013年到現(xiàn)在10年的時間,我們擁有了豐富的建站經驗和運維經驗,來保證我們的工作的順利進行。專注于網站建設就選成都創(chuàng)新互聯(lián)。
SingletonInheritor 是一個包含 declare 方法的對象,
這個對象的declare() 方法就可以用來將你的class構造成單例。
var?singleton1?=?SingletonInheritor.declare(ClassA);?//?ClassA變成單例Class
var?obj1?=?ClassA.instance();?//?獲取單例對象
var?obj2?=?ClassA.instance();?//?獲取到的對象與上面是同一個
2. 構造函數(shù)(public, private屬性和方法) 1: function Person(iName, iAge){ 2: //private field 3: var name = iName; 4: var age = iAge; 5: 6: //private method 7: var privatefn = function(){ 8: alert(name); 9: } 10: 11: return { 12: //public field 13: Name: "hello " + name, 14: Age: "hello " + age, 15: 16: ShowStudent: function(){ 17: privatefn(); 18: alert(this.Name); 19: } 20: }; 21: }調用:(new Person("xiao","10")).ShowStudent(); 3. 原型方法(prototype) 1: function c(){} 2: c.prototype={ 3: name: "init value a", 4: setName: function(iName){ 5: this.name=iName; 6: }, 7: getName: function(){ 8: alert('hello from c, name: ' + this.name); 9: } 10: }; 11: (new c).getName(); // 輸出hello from c, name: init value a 4. 構造函數(shù)+原型方法(prototype) 1: function Person(iName) { 2: this.name = iName; 3: }; 4: 5: Person.prototype={ 6: getName: function(){ 7: returnthis.name; 8: } 9: }; 10: 11: //調用 12: var b = new Person("jack"); 13: alert(b.getName()); 5. 構造函數(shù)+原型方法(prototype)- 節(jié)省內存的寫法 1: function Person(iName, iAge){ 2: this.name=iName; 3: this.age=iAge; 4: 5: //對象實例都共享同一份方法不造成內存浪費 6: if(typeof Person._initialized == "undefined"){ 7: Person.prototype.ShowStudent=function(){ 8: alert(this.name); 9: }; 10: Person._initialized=true; 11: } 12: } 13: //調用 14: (new Person("jack","20")).ShowStudent();以上的實現(xiàn)方法如果不用_initialized的方法,也可以指向一個外部函數(shù),道理一樣。 6. JavaScript類的單例(Singleton)模式寫法 1: var MyNamespace = {}; 2: MyNamespace.Singleton = (function() { 3: var uniqueInstance; // Private attribute that holds the single instance. 4: function constructor() { // All of the normal singleton code goes here. 5: // Private members. 6: var privateAttribute1 = false; 7: var privateAttribute2 = [1, 2, 3]; 8: function privateMethod1() { 9: //... 10: } 11: function privateMethod2(args) { 12: //... 13: } 14: return { // Public members. 15: publicAttribute1: true, 16: publicAttribute2: 10, 17: publicMethod1: function() { 18: // ... 19: }, 20: publicMethod2: function(args) { 21: // ... 22: } 23: } 24: } 25: return { 26: getInstance: function() { 27: if(!uniqueInstance) { // Instantiate only if the instance doesn't exist. 28: uniqueInstance = constructor(); 29: } 30: return uniqueInstance; 31: } 32: } 33: })(); 34: 35: //調用: 36: MyNamespace.Singleton.getInstance().publicMethod1(); JavaScript好書推薦(只推3本,須精讀)
好像 似乎 大概 是這個樣子滴 匿名函數(shù)問題:
把 window["lib"]["lognModule"] =(function(){code})();
改成window["lib"]["lognModule"] =(function(){code});
不要最后那個括號,最后那個括號表示執(zhí)行該返回的函數(shù);
你只是讓window.lib.lognModule對該函數(shù)的引用,而不是引用執(zhí)行完了的結果。
(function?()?{????????????????//自運行函數(shù),初始化一些必要內容(也可叫封包)
var?obj?=?null;???????????//定義一個變量,保存實例對象
window.getObject?=?function()?{????//初始化外部接口好調用這個實例
if?(obj?===?null)?{????????????//如果實例為空就new一個實例并保存到obj
obj?=?new?(function?()?{
var?rows?=?0;
this.getRows?=?function?()?{
return?rows;
}
this.setRows?=?function?(value)?{
rows?=?value;
}
})();
}
return?obj;?????????//最后返回該實例
}
})();
調用如下:
getObject()
得到的對象有getRows和setRows兩個函數(shù)
可以先調用setRows更改該屬性值來判讀多次調用getObject得到的是不是同一對象