之前学习JavaScript 权威指南,说以后在JavaScript建立对象请使用Object.create() 尽量少使用 new Function() .这两个新建对象的方法到底有什么不同呢?
前言
之前学习JavaScript 权威指南,说以后在JavaScript建立对象请使用Object.create() 尽量少使用 new Function() .这两个新建对象的方法到底有什么不同呢?
Object.create vs. new Function()
首先我们看一下两个创建对象的方法
// Demo
var Base = function () {};
var a = new Base();
var b = Object.create(Base.prototype);
实现方式完全不同,需然都动作都是一样,实现了一个Base对象.但是个中又有不同,我们看一下他们内核是怎样实现的.
new Object()
// new Function() 理解缩略版
var o1 = new Object();
o1.__proto__ = Base.prototype;
Base.call(o1);
or;
// new 详细内核
function objectFactory() {
var args = Array.prototype.slice.call(arguments); // 使用objectFactory的时候,把arguments,转化为数组
var Constructor = args.shift(); //提取第1个构建对象
var instance = Object.create(Constructor.prototype); // 创建constructor实例 instance ,等同于上面的 new Object() 和 o1.__proto = Base.prototype
var temp = Constructor.apply(instance, args); // 使用apply函数运行args, 把 instance 绑定到 this ,等同于上面的Base.call(o1)
return typeof temp === "object" && temp !== null ? temp : instance; //返回对象判断 是object 还是 null 还是实例
}
new 方式实现方式,实际上是先新建了一个Object对象,再用这个对象继承至Base,最后再绑定this. 实现原理: 新建一个Object,再通过proto绑定,继承prototype.
Object.create(proto[, propertiesObject])
// Object.create
Object.create = function (o) {
var F = function () {}; // 隐式构造函数
F.prototype = o;
return new F(); // 返回一个new
};
Object.create实现方式,实际上是先新建一个constructer Function, 再用 prototype 继承至 o.prototype 来实现继承,和new实现继承的方法不一样。最后new一个对象,这里要注册create没有绑定this,同时没有调用到Base 的construcer.
实现原理: 新建一个隐式函数,再通过prototype 绑定.
我们来看一个实际的例子:
function Foo() {
console.log("foo function");
}
var a = new Foo(); // foo function
// a 创建的时候 会自动执行构造函数
var b = Object.create(Foo.prototype);
// b 创建的时候不会执行构造函数,因为已经隐藏了.
我们再看一个例子:
function Foo(a) {
this.name = a;
// var color = 'red';
}
Foo.prototype.getName = function () {
console.log(this.name);
};
var a = new Foo("BBC");
var b = Object.create(Foo.prototype);
console.log(a.name); // BBC
console.log(b.name); // undefined
console.log(a.getName()); // BBC
console.log(b.getName()); // undefined
上例子可以看出因为Object.create 没有this ,访问不到name,那应该怎样正常创建Object.creat.看下面例子:
function Foo(a) {
this.name = a;
}
Foo.prototype.getName = function () {
console.log(this.name);
};
var a = new Foo("BBC");
var b = Object.create(Foo.prototype, {
name: {
// name变量
value: "BBC",
enumerable: true,
},
});
console.log(a.name); // BBC
console.log(b.name); // BBC
所以new 和 Object.create 绝不相同.使用的时候要多加注意.
使用场景
他们两的使用场景在那里呢?
new
生成实例对象的常用方法,就是使用new命令,让构造函数返回一个实例.
Object.create
但是很多时候,只能拿到一个实例对象,它可能根本不是由构建函数生成的,那么能不能从一个实例对象,生成另一个实例对象呢?JavaScript 提供了Object.create方法,用来满足这种需求。
// 原型对象
var A = {
print: function () {
console.log("hello");
},
name: "color",
};
// 实例对象
var B = Object.create(A);
B.print(); // hello
B.print === A.print; // true
B.name = "shape";
A.name; // color
上面代码中,Object.create方法以A对象为原型,生成了B对象。B继承了A的所有属性和方法。这段代码等同于下面的代码。
var A = function () {};
A.prototype = {
print: function () {
console.log("hello");
},
};
var B = new A();
B.print === A.prototype.print; // true
下面三种方式生成的新对象是等价的。
var obj1 = Object.create({});
var obj2 = Object.create(Object.prototype);
var obj3 = new Object();
参考
你不知道的javascript之Object.create 和new区别
Object.create() and new SomeFunction()