时间:2021-05-26
复制代码 代码如下:
//使用原型继承,中间使用临时对象作为Child的原型属性,临时对象的原型属性再指向父类的原型,
//防止所有子类和父类原型属性都指向通一个对象.
//这样当修改子类的原型属性,就不会影响其他子类和父类
function extend(Child, Parent) {
var F = function(){};
F.prototype = Parent.prototype;
Child.prototype = new F();
Child.prototype.constructor = Child;
Child.base = Parent.prototype;
}
function Parent(name)
{
this.aa = 123;
this.getName = function() {return name;}; //使用闭包模拟私有成员
this.setName = function(value){name=value;};
}
Parent.prototype.print = function(){alert("print!");};
Parent.prototype.hello = function()
{
alert(this.getName() + "Parent")
};
function Child(name,age)
{
Parent.apply(this, arguments);//调用父类构造函数来继承父类定义的属性
this.age = age;
}
extend(Child,Parent); //继承Parent
Child.prototype.hello = function() //重写父类hello方法
{
alert(this.getName() + "Child");
Parent.prototype.hello.apply(this,arguments); //调用父类同名方法
};
//子类方法
Child.prototype.doSomething = function(){ alert(this.age + "Child doSomething"); };
var p1 = new Child("xhan",22);
var p2 = new Child("xxx",33);
p1.hello();
p2.hello();
p1.doSomething(); //子类方法
p1.print(); //父类方法
alert(p1 instanceof Child); //true
alert(p1 instanceof Parent);//true
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
JS继承JavaScript中没有类的概念,与类相关的继承的概念更是无从谈起,但是我们可以通过特殊的语法来模拟面向对象语言中的继承。在JS中模拟继承有多种方式,
一:js原型继承四步曲//js模拟类的创建以及继承//动物(Animal),有头这个属性,eat方法//名字这个属性//猫有名字属性,继承Animal,抓老鼠方
Javascipt语法不支持"类"(class)[es6已经支持],但是有模拟类的方法。今天我主要谈谈Javascipt中模拟“类”的方法及js中继承的总结和回
本文实例讲述了JS伪继承prototype实现方法。分享给大家供大家参考,具体如下:众所周知JS中没有类的概念,但是要想实现类的功能可以同过function模拟
类式继承(构造函数)JS中其实是没有类的概念的,所谓的类也是模拟出来的。特别是当我们是用new关键字的时候,就使得“类”的概念就越像其他语言中的类了。类式继承是