具有相同功能的構造函數創建在試圖建立一個對象與該保持與具有相同的構造創建的所有對象的陣列的構造函數一個內禮對象的所有實例。陣列與在Javascript
我想,最好的辦法是與對象初始化一個封閉,這是我嘗試解決這個問題:
function myObject (name){ this.name=name; this.allInstances = []; } myObject.ptototype = { init : function(){ return function(){this.allInstances.push(this.name)}; }(), } object1 = new myObject("object1"); object2 = new myObject("object2"); console.log(object1.allInstances); // should print ["object1", "object2"]
有誰知道如何做到這一點?這甚至有可能嗎?
我專門試圖讓只使用函數構造函數和原型,以實現一個解決方案。
我知道如何通過推動禮節到外部陣列等來解決:
var allInstances = []; function myObject (name){ this.name=name; allInstances.push(this.name); } console.log(allInstances)
萬分感謝!!!!你是個天才! –