js

new的过程都发生了什么

2019-06-24  本文已影响0人  CRUD_科科
// 模拟new的方法
function mockNew() {
 let Constructor = [].shift.call(arguments);  // 取出类
 let obj = {};
 obj.__proto__ = Constructor.prototype;
 let r = Constructor.apply(obj, arguments);  //执行Animal并把this指向obj,所以obj.type === arguments中的type
 return obj instanceof Object ? r : obj;
}

function Animal(type) {
 this.type = type;
 return { 'a': '1' };   // 如果构造函数返回的是一个引用类型,就直接把对象返回 
}
Animal.prototype.say = function () {
 console.log('say')
}

let r = mockNew(Animal, 1);
// let r = new Animal(1);
console.log(r)
// console.log(r.type);
// r.say()

上一篇下一篇

猜你喜欢

热点阅读