new 操作符到底做了什么

2017-11-11  本文已影响19人  coolheadedY

先看结果

function Person (name, age, job) {
  this.name = name
  this.age = age
  this.job = job
}
Person.prototype.sayName = function () {
  console.log(this.name)
}

// 使用new操作符
var p1 = new Person('laoyang', '22', 'coding')
p1 instanceof Person // true

// 不使用new 操作符
var p2 = new Object()
Person.call(p2, 'xiaoyang', '2', 'test')
p2.__proto__ = Person.prototype
p2 instanceof Person // true

比较不同

// 使用new 操作符直接创建实例
var p1 = new Person('laoyang', '22', 'coding')

// 不使用new 操作符
var p2 = new Object() // p2 创建成为一个对象 这时p2的原型是Object
Person.call(p2, 'xiaoyang', '2', 'test') // Person构造函数在 p2 对象的环境内执行 这时p2已经是一个具有Person属性的实例了,但原型是Object
p2.__proto__ = Person.prototype // 最后把Person.prototype 赋值给p2.__proto__,让p2的原型指向Person.prototype

不使用new 操作符创建实例的步骤:

上一篇 下一篇

猜你喜欢

热点阅读