为了账号安全,请及时绑定邮箱和手机立即绑定

Student和Student.prototype是什么关系图中为什么只有Student.prototype没有student

同样的Person和Person.prototype什么关系,Person应该在图中的什么位置

正在回答

2 回答

Person.prototype.constructor指向Person。

实例查找属性或方法会先从构造函数开始查,所以如果Person有一个name属性且Person.prototype也有一个name属性,通过实例.name返回的是Person上的name属性

function a(){this.name="aaa"}

//undefined

a.prototype.name="ccc"

//"ccc"

var b=new a()

//undefined

b.name

//"aaa"

a.prototype.name

//"ccc"


0 回复 有任何疑惑可以回复我~

student.prototype   可以理解成是student的本体

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

Student和Student.prototype是什么关系图中为什么只有Student.prototype没有student

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信