Professional JavaScript for Web Developers book には、寄生結合継承と呼ばれる手法があります。元のプロトタイプのクローンを取得する必要がある理由がわかりません。SubType プロトタイプを親 (SuperType) のプロトタイプに設定しないのはなぜですか。
function object(o){
function F(){}
F.prototype = o;
return new F();
}
function inheritPrototype(subType, superType){
var prototype = object(superType.prototype); //create object -- why this is needed?
prototype.constructor = subType; //augment object
subType.prototype = prototype; //assign object
}
function SuperType(name){
this.name = name;
this.colors = ["red", "blue", "green"];
}
SuperType.prototype.sayName = function(){
alert(this.name);
};
function SubType(name, age){
SuperType.call(this, name);
this.age = age;
}
inheritPrototype(SubType, SuperType);
SubType.prototype.sayAge = function(){
alert(this.age);
};
このように変更してみましたが、うまくいきました:
function inheritPrototype(subType, superType){
var prototype = superType.prototype;
prototype.constructor = subType; //augment object
subType.prototype = prototype; //assign object
}