原型链继承:
1 2 3 4 5 6 7 8 9 10 11 12
| var Base = function() { this.level = 1; this.name = "base"; this.toString = function() { return "base"; }; }; Base.CONSTANT = "constant";
var Sub = function() {}; Sub.prototype = new Base(); Sub.prototype.name = "sub";
|
优点:从instanceof
关键字来看,实例既是父类的实例,又是子类的实例,看起来似乎是最纯粹的继承。
缺点:子类区别于父类的属性和方法,必须在Sub.prototype = new Base()
这样的语句之后分别执行,无法被包装到Sub
这个构造器里面去。例如:Sub.prototype.name = "sub"
无法实现多重继承。
构造继承:
1 2 3 4 5 6 7 8 9 10 11 12 13
| var Base = function() { this.level = 1; this.name = "base"; this.toString = function() { return "base"; }; }; Base.CONSTANT = "constant";
var Sub = function() { Base.call(this); this.name = "sub"; };
|
优点:可以实现多重继承,可以把子类特有的属性设置放在构造器内部。
缺点:使用instanceof
发现,对象不是父类的实例。
实例继承:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| var Base = function() { this.level = 1; this.name = "base"; this.toString = function() { return "base"; }; }; Base.CONSTANT = "constant";
var Sub = function() { var instance = new Base(); instance.name = "sub"; return instance; };
|
优点:是父类的对象,并且使用new构造对象和不使用new
构造对象,都可以获得相同的效果。
缺点:生成的对象实质仅仅是父类的实例,并非子类的对象;不支持多继承。
拷贝继承:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| var Base = function() { this.level = 1; this.name = "base"; this.toString = function() { return "base"; }; }; Base.CONSTANT = "constant";
var Sub = function() { var base = new Base(); for(var i in base) Sub.prototype[i] = base[i]; Sub.prototype["name"] = "sub"; };
|
优点:支持多继承。
缺点:效率较低;无法获取父类不可枚举的方法。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| var Scope = function() { this.$clone = function() { var f = function() {}; f.prototype = this; return new f(); } };
var scopeA = new Scope(); scopeA.title = 'My title';
var scopeB = scopeA.$clone();
console.log(scopeB.title === 'My title'); scopeA.title = 'Home title'; console.log(scopeB.title === 'Home title');
scopeB.title = 'scopeB title'; console.log(scopeA.title === 'Home title') console.log(scopeB.title)
|
这几种形式各有特点,仅就我提供的代码而言,满足下面的表格:
| instanceof父类 | instanceof子类 | 子类constructor | 不可枚举方法的继承 | 多继承可实现 |
---|
原型链继承 | TRUE | TRUE | FALSE | TRUE | FALSE |
构造继承 | FALSE | TRUE | TRUE | TRUE | TRUE |
实例继承 | TRUE | FALSE | FALSE | TRUE | FALSE |
拷贝继承 | FALSE | TRUE | TRUE | FALSE | TRUE |
补充,如果我们不需要类继承,只需要对象继承,对于支持 ECMAScript 5 的浏览器来说,还可以用Object.create方法来实现:
1 2 3 4 5 6 7 8 9 10 11
| var Base = function() { this.level = 1; this.name = "base"; this.toString = function() { return "base"; }; }; Base.CONSTANT = "constant";
var sub = Object.create(new Base()); sub.name = "sub";
|
转载自:http://raychase.iteye.com/blog/1337415