• 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 = Object.create(constructor.prototype);//创建空对象,并将原型指向构造函数的原型
      let res = constructor.call(obj, ...args.slice(1));//call强行将this指向第一个参数
      if ((typeof res === 'object' || typeof res === 'function') && res != null) {
        return res;
      } else {
        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 }

    ————————————————
    版权声明:本文为CSDN博主「漫疏狂」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/lyt_angularjs/article/details/86623988

  • 相关阅读:
    【引用】Android.mk简介
    android02android的四大组件
    rpm 安装指令全
    android04activity的布局管理器
    代码积累1统计图
    清除防火墙所有配置规则
    代码积累2tab页面滑动效果
    RHEL5 配置YUM源 安装RZSZ
    系统安全漏洞扫描软件
    liunx下防火墙的配置
  • 原文地址:https://www.cnblogs.com/ygunoil/p/12058622.html
Copyright © 2020-2023  润新知