function SuperType(){
this.colors = ['green','yellow','red']
}
function SubType(){
}
//继承了 SuperType
SubType.prototype = new SuperType();
var instance1 = new SubType();
var instance2 = new SubType();
instance1.colors.push("blue");
console.log(instance2.colors); // ["green", "yellow", "red", "blue"]
借用构造函数
function SuperType(){
this.colors = ["red", "blue", "green"];
}
function SubType(){
//继承了 SuperType
SuperType.call(this);
}
var instance1 = new SubType();
instance1.colors.push("black");
console.log(instance1.colors); //"red,blue,green,black"
var instance2 = new SubType();
console.log(instance2.colors); //"red,blue,gree
优点
可以传递参数
function SuperType(name){
this.name = name;
}
function SubType( name ){
//继承了 SuperType
SuperType.call(this, name);
}
var instance1 = new SubType("布加拉提");
console.log(instance1.name); //"布加拉提"
缺点
- 方法都在构造函数中定义,因此函数复用就无从谈起
### 组合继承
```js
function SuperType(name){
this.name = name;
this.colors = ["red", "blue", "green"];
}
SuperType.prototype.sayName = function(){
console.log(this.name);
};
function SubType(name, age){
//继承属性
SuperType.call(this, name);
this.age = age;
}
//继承方法
SubType.prototype = new SuperType();
SubType.prototype.constructor = SubType;
SubType.prototype.sayAge = function(){
console.log(this.age);
};
var instance1 = new SubType("Nicholas", 29);
instance1.colors.push("black");
console.log(instance1.colors); //"red,blue,green,black"
instance1.sayName(); //"Nicholas";
instance1.sayAge(); //29
var instance2 = new SubType("Greg", 27);
console.log(instance2.colors); //"red,blue,green"
instance2.sayName(); //"Greg";
instance2.sayAge(); //27
原型链继承
其基本思想是利用原型让一个引用类型继承另一个引用类型的属性和方法。
缺点
借用构造函数
优点
console.log(instance1.name); //"布加拉提"
优点
原型式继承
寄生式继承
在原型式继承的基础上,添加方法,使用寄生式继承来为对象添加函数,会由于不能做到函数复用而降低效率;这一点与构造函数模式类似。
寄生组合模式
组合模式是最常用的继承方式,但缺点是都调用两次超类型构造函数:一次是在创建子类型原型的时候,另一次是在子类型构造函数内部:
那么怎么优化呢? 我们用寄生式继承来继承超类型的原型: