// 组合方式
function Parent3 () {
this.name = 'Parent3';
this.play = [1, 2, 3];
}
function Child3 () {
Parent3.call(this); // 父级的构造函数执行了两次
this.type = 'child3';
}
Child3.prototype = new Parent3();
var s3 = new Child3();
var s4 = new Child3();
s3.play.push(4);
console.log(s3.play, s4.play);
// 组合继承优化1
function Parent4 () {
this.name = 'Parent4';
this.play = [1, 2, 3];
}
function Child4 () {
Parent4.call(this);
this.type = 'child4';
}
Child4.prototype = Parent4.prototype; // 引用类型
var s5 = new Child4();
var s6 = new Child4();
s5.play.push(4);
console.log(s5, s6);
console.log (s5 instanceof Parent4);
console.log (s5 instanceof Child4);
// 如何判断s5是child4的实例还是parent4的实例
console.log (s5.constructor)
// 从父类的原型链中继承了constructor
// 组合继承优化2
function Parent5 () {
this.name = 'Parent5';
this.play = [1, 2, 3];
}
function Child5 () {
Parent4.call(this);
this.type = 'child5';
}
Child5.prototype = Object.create(Parent5.prototype); // 引用类型 父子原型链隔离
Child5.prototype.constructor = Child5; // 重写child5的构造函数
var s7 = new Child5();
var s8 = new Child5();
s7.play.push(4);
console.log(s7, s8);
console.log (s7.constructor);
</script>
js 面向对象(2)
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- HTML 学习笔记 May 10,2017 js函数调用过程内存分析、js函数细节、js一维数组细节、二维数组转置...