// 模拟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()
网友评论