原型链

原型链有点懵 画了图好像理解了点

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// person的构造函数
function Person(name){
this.name = name
}
// person原型对象方法
Person.prototype.eat = function(){
console.log('person eat')
}

// ...
function Student(){}
Student.prototype.sayhi = function(){
console.log('student sayhi')
}


Student.prototype = new Person('doreen')
var stu = new Student()
stu.eat() // person eat
stu.sayhi() // 报错 stu.sayhi is not a function

// stu.__proto__ => new Person()
// stu.__proto__.__proto__ === Person.prototype

总结

  • 构造函数可以实例化对象
  • 构造函数中有一个属性叫prototype,是构造函数的原型对象
  • 原型对象中有一个叫constructor构造器,指向自己所在的构造函数
  • 实例对象的原型对象 (__proto__) 指向的是构造函数的原型对象
  • 构造函数中的原型对象 (prototype) 中的方法是可以被实例对象直接访问

扫一扫,分享到微信

微信分享二维码
  • Copyrights © 2019-2023 John Doe
  • Visitors: | Views:

请我喝杯咖啡吧~

支付宝
微信