码迷,mamicode.com
首页 > Web开发 > 详细

js中new一个对象的过程

时间:2019-07-28 17:49:45      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:fun   color   new   type   dex   call   index   func   class   

  1. 创建一个空对象  varobj = newObject();
  2. 让Person中的this指向新创建的空对象obj,并执行Person的函数体   varresult = Person.call(obj);
  3. 执行代码,即对this赋值    obj.__proto__ = Person.prototype;
  4. 返回this
1  function Person(name, age) {
2     this.name = name;
3     this.age = age;
   // return this (默认有这一行返回this对象)
4  } 5  var person = new Person("Alice", 23);

 

js中new一个对象的过程

标签:fun   color   new   type   dex   call   index   func   class   

原文地址:https://www.cnblogs.com/chailuG/p/11259530.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!