js中new到底做了什么?如何重写new?

更新时间:2023-05-29 16:27:07 阅读: 评论:0

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;好的句子摘抄
} el {
ps恢复默认设置return obj;
}
}
原始心管搏动let a = _new(People, 'aa', 20, 132456);
let na = new People('aa', 20, 132456);
console.log(a, na);
//运⾏结果
People { name: 'aa', age: 20, phone: 132456 }构建和谐
People { name: 'aa', age: 20, phone: 132456 }

本文发布于:2023-05-29 16:27:07,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/947478.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:对象   原型   指向
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图