Javascript模拟实现new原理解析
网络编程 2021-07-04 15:02www.168986.cn编程入门
这篇文章主要介绍了Javascript模拟实现new原理解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
new是JS中的一个关键字,用来将构造函数实例化的一个运算符。例子
function Animal(name) { this.name = name; } Animal.prototype.sayName = function() { console.log("I'm " + this.name); } var cat = new Animal('Tom'); console.log(cat.name); // Tom console.log(cat.__proto__ === Animal.prototype); // true cat.sayName(); // I'm Tom
从上面的例子可以得出两点结论
- new操作符实例化了一个对象;
- 这个对象可以访问构造函数的属性;
- 这个对象可以访问构造函数原型上的属性;
- 对象的__proto__属性指向了构造函数的原型;
由于new是关键字,我们只能去声明一个函数去实现new的功能,实现上面的三个特性,第一版代码如下
附对原型原型链不熟悉的可以先看理解Javascript的原型和原型链。
// construct: 构造函数 function newFunction() { var res = {}; // 排除第一个构造函数参数 var construct = Array.prototype.shift.call(arguments); res.__proto__ = construct.prototype; // 使用apply执行构造函数,将构造函数的属性挂载在res上面 construct.apply(res, arguments); return res; }
我们测试下
function newFunction() { var res = {}; var construct = Array.prototype.shift.call(arguments); res.__proto__ = construct.prototype; construct.apply(res, arguments); return res; } function Animal(name) { this.name = name; } Animal.prototype.sayName = function() { console.log("I'm " + this.name); } var cat = newFunction(Animal, 'Tom'); console.log(cat.name); // Tom console.log(cat.__proto__ === Animal.prototype); // true cat.sayName(); // I'm Tom
一切正常。new的特性实现已经80%,但new还有一个特性
function Animal(name) { this.name = name; return { prop: 'test' }; } var cat = new Animal('Tom'); console.log(cat.prop); // test console.log(cat.name); // undefined console.log(cat.__proto__ === Object.prototype); // true console.log(cat.__proto__ === Animal.prototype); // false
如上,如果构造函数return了一个对象,那么new操作后返回的是构造函数return的对象。让我们来实现下这个特性,最终版代码如下
// construct: 构造函数 function newFunction() { var res = {}; // 排除第一个构造函数参数 var construct = Array.prototype.shift.call(arguments); res.__proto__ = construct.prototype; // 使用apply执行构造函数,将构造函数的属性挂载在res上面 var conRes = construct.apply(res, arguments); // 判断返回类型 return conRes instanceof Object ? conRes : res; }
测试下
function Animal(name) { this.name = name; return { prop: 'test' }; } var cat = newFunction(Animal, 'Tom'); console.log(cat.prop); // test console.log(cat.name); // undefined console.log(cat.__proto__ === Object.prototype); // true console.log(cat.__proto__ === Animal.prototype); // false
以上代码就是我们最终对new操作符的模拟实现。我们再来看下官方对new的解释
引用MDN对new运算符的定义
new 运算符创建一个用户定义的对象类型的实例或具有构造函数的内置对象的实例。
new操作符会干狼蚁网站SEO优化这些事
- 创建一个空的简单JavaScript对象(即{});
- 链接该对象(即设置该对象的构造函数)到另一个对象 ;
- 将步骤1新创建的对象作为this的上下文 ;
- 如果该函数没有返回对象,则返回this。
4条都已经实现。还有一个更好的实现,就是通过Object.create去创建一个空的对象:
// construct: 构造函数 function newFunction() { // 通过Object.create创建一个空对象; var res = Object.create(null); // 排除第一个构造函数参数 var construct = Array.prototype.shift.call(arguments); res.__proto__ = construct.prototype; // 使用apply执行构造函数,将构造函数的属性挂载在res上面 var conRes = construct.apply(res, arguments); // 判断返回类型 return conRes instanceof Object ? conRes : res; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 甘肃哪有关键词排名优化购买方式有哪些
- 甘肃SEO如何做网站优化
- 河南seo关键词优化怎么做电话营销
- 北京SEO优化如何做QQ群营销
- 来宾百度关键词排名:提升您网站曝光率的关键
- 卢龙关键词优化:提升您网站排名的策略与技巧
- 山东网站优化的注意事项有哪些
- 四川整站优化怎样提升在搜索引擎中的排名
- 疏附整站优化:提升网站性能与用户体验的全新
- 海南seo主要做什么工作售后服务要做到哪些
- 荣昌百度网站优化:提升您网站的搜索引擎排名
- 河北seo网站排名关键词优化如何做SEO
- 江西优化关键词排名推广售后保障一般有哪些
- 古浪SEO优化:提升你的网站可见性
- 西藏网站排名优化怎么把网站排名在百度首页
- 如何提升阳东百度快照排名:详尽指南