javascript中的原型与继承4--原型继承Prototypal Inheritance(Object.create)与寄生继承(Parasitic Inheritance)

在2006年的时候,一个叫做Douglas Crockford的哥们发明了一个新的继承方式,这种方式不需要定义构造函数。他是这么做的

//210页
function object(o) {
function F() {}
F.prototype=o;
return new F();
}
//essentially,object() performs a shadow copy of any object that is passed into it.


var person={
name:"尼古拉斯",
friends:['a','b']
};
var anotherPerson=object(person);
anotherPerson.name='another';
anotherPerson.friends.push('c');


var anotherPerson2=object(person);
anotherPerson2.name='another2';
anotherPerson2.friends.push('c2');
console.log(person.friends);//[ 'a', 'b', 'c', 'c2' ]

有人感觉这种方式很叼,然后ES5就实现了它,增加了一个Object.create()方法,改写上面的例子如下

var anotherPerson=object(person);  改成  var anotherPerson=Object.create(person);

其他的类似改。

Object.create方法还能接受第二个参数,就不说了。



那么如果想在anotherPerson上面加方法怎么办呢,可以这样(叫做寄生继承):

function createAnother(ori) {
var clone=object(ori);
clone.sayHi=function () {
console.log('hi');
};
return clone;
}
anotherPerson.sayHi();//这就是了




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值