function Aaa(name){
this.name = name;
this.colors = ["red","blue","green"];
}
Aaa.prototype.sayName = function(){
console.log(this.name);
};
function Bbb(name,age){
Aaa.call(this,name);
this.age = age;
}
Bbb.prototype = new Aaa();
Bbb.prototype.sayAge = function(){
console.log(this.age);
}
let instance1 = new Bbb("Nicholas",29);
instance1.colors.push("black");
console.log(instance1.colors);
instance1.sayName();
instance1.sayAge();
let instance2 = new Bbb("Greg",27);
console.log(instance2.colors);
instance2.sayName();
instance2.sayAge();
- 组合继承(有时候也叫伪经典继承)综合了原型链和盗用构造函数,将两者的优点集中了起来。
- 使用原型链继承原型上的属性和方法,通过盗用构造函数继承实例属性。
- 这样既可以把方法定义在原型上以实现重用,又可以让每个实例都有自己的属性。