所以我写了这些测试来看看使用原型会快多少……
function User() {
return {
name: "Dave",
setName: function(n) {
this.name = n;
},
getName: function() {
return this.name;
}
};
}
function UserPrototype() {
if (!(this instanceof UserPrototype)) return new UserPrototype();
this.name = "Dave";
}
UserPrototype.prototype.getName = function() {
return this.name;
};
UserPrototype.prototype.setName = function(n) {
this.name = n;
};
function setName(obj,name)
{
obj.name = name;
}
function getName(obj)
{
return obj.name;
}
//Test 1
var c = 10000000;
var tstart = 0;
var tend = 0;
tstart = new Date().getTime();
for (var j = 0; j < c; j++) {
var newUser = User();
newUser.setName("michael");
newUser.getName();
}
tend = new Date().getTime() - tstart;
console.log("Returning object with methods: " + tend / 1000.0 + " seconds");
//Test 2
tstart = new Date().getTime();
for (var j = 0; j < c; j++) {
var newUser = new UserPrototype();
newUser.setName("michael");
newUser.getName();
}
tend = new Date().getTime() - tstart;
console.log("Using prototypes: " + tend / 1000.0 + " seconds");
//Test 3
tstart = new Date().getTime();
for (var j = 0; j < c; j++) {
var newUser = {name:"dave"};
setName(newUser,"michael");
getName(newUser);
}
tend = new Date().getTime() - tstart;
console.log("Using general functions: " + tend / 1000.0 + " seconds");
我的结果:
Returning object with methods: 9.075 seconds
Using prototypes: 0.149 seconds
Using general functions: 0.099 seconds
我写了前两个测试,当我看到结果时,我想我为什么会看到它们......我在想原因是由于每次都会创建两个新的方法属性实例,所以返回的对象很慢对象被实例化,而原型方法更快,因为它只创建一次函数。一般函数调用和原型之间的性能接近使我认为我的假设是正确的。
所以我的第一个问题是,我对我的假设是否正确?
我的第二个问题是,如何在保持高性能的同时使原型编写更具可读性?有没有办法以看起来像是在“类”中的方式对原型进行编码(如果有意义的话)
*编辑 - 我忘了用 Object.create() 做一个测试,只是做了一个并发布了结果。JSFiddle:(http://jsfiddle.net/k2xl/SLVLx/)。
我现在得到:
Returning object with methods: 0.135 seconds fiddle.jshell.net:63
Using prototypes: 0.003 seconds fiddle.jshell.net:72
Using general functions: 0.002 seconds fiddle.jshell.net:81
Returning object.create version: 0.024 seconds
看起来这可能是解决方案?