林业大学排名js中new到底做了什么?如何重写new?
new 构造函数()执⾏顺序
1.在堆中开辟对象内存空间, 记为obj
2.在obj 中添加__proto__属性并指向构造函数.prototype
3.将构造函数中的this 指向obj
4.执⾏构造函数内语句
若构造函数中没有reutrn 或return this或基本类型(number、string、boolean、null、undefined)的值,则返回obj在堆中的内存地址;若return 引⽤类型,则返回值为这个引⽤类型
仿写new的⾏为
function People(name, age, phone) {
西方结婚誓词
this.name = name;
自由协会
this.age = age;
this.phone = phone;
//若构造函数中`没有reutrn 或return this或基本类型`(number、string、boolean、null、undefined)的值,则返回obj在堆中的内存地址;若`return 引⽤类型`,则返回值为这个引⽤类型// return null;//⽆影响
// return {};//返回此对象
// return function(){};//返回此函数
}
function _new(...args) {
热血教师电影let constructor = args[0];//获取构造函数
let obj = ate(constructor.prototype);//创建空对象,并将原型指向构造函数的原型
let res = constructor.call(obj, ...args.slice(1));//call强⾏将this指向第⼀个参数
if ((typeof res === 'object' || typeof res === 'function') && res != null) {
return res;
uldum} el {深圳模具培训
wlan是什么
return obj;jinshen
}
}
let a = _new(People, 'aa', 20, 132456);
let na = new People('aa', 20, 132456);
kwas
保送生需要什么条件console.log(a, na);
//运⾏结果
People { name: 'aa', age: 20, phone: 132456 }
People { name: 'aa', age: 20, phone: 132456 }