2

为什么我不能在函数内部设置原型?例如为什么这不起作用?

var Bar = function(){
   this.name='Bar'
}

var barProto = new Bar()  

var Foo = function(){
    this.prototype= barProto
}

var foo = new Foo()
console.log(foo.name) // undefined

但这确实有效:

var Bar = function(){
   this.name='Bar'
}

var barProto = new Bar()  

var Foo = function(){

}

Foo.prototype= barProto

var foo = new Foo()

console.log(foo.name) // Bar

我不喜欢在创建函数后分配原型的语法。

4

2 回答 2

5
this.prototype= barProto

不等于

Foo.prototype= barProto

this指将由 new Foo() 创建的特定对象

Foo 是构造函数。您在构造函数上设置原型,而不是在特定实例上。

有关原型继承的更多信息:Mozilla docs

于 2013-02-14T17:07:34.950 回答
2

因为this.prototype不一样Foo.prototype。当Foo用 调用时new,对它内部的任何引用this都将引用正在创建的实例。

于 2013-02-14T17:06:21.297 回答