为什么“使用严格”在这个例子中提高了10倍的性能?
在扩展String.prototype性能的问题之后,我非常感兴趣,因为在String.prototype
方法中添加"use strict"
可以提高性能10倍。 bergi的解释很简短,并没有向我解释。 为什么两种几乎相同的方法之间存在如此巨大的差异,仅在顶部的"use strict"
有所不同? 你能否更详细地解释这个理论?
String.prototype.count = function(char) {
var n = 0;
for (var i = 0; i < this.length; i++)
if (this[i] == char) n++;
return n;
};
String.prototype.count_strict = function(char) {
"use strict";
var n = 0;
for (var i = 0; i < this.length; i++)
if (this[i] == char) n++;
return n;
};
// Here is how I measued speed, using Node.js 6.1.0
var STR = '0110101110010110100111010011101010101111110001010110010101011101101010101010111111000';
var REP = 1e4;
console.time('proto');
for (var i = 0; i < REP; i++) STR.count('1');
console.timeEnd('proto');
console.time('proto-strict');
for (var i = 0; i < REP; i++) STR.count_strict('1');
console.timeEnd('proto-strict');
在严格模式下, this
上下文不会被强制为一个对象。 如果你在一个非对象上调用一个函数, this
就是那个非对象。
相反,在非严格模式下,如果this
上下文不是一个对象,它总是先包装在一个对象中。 例如, (42).toString()
首先在Number
对象中包装42
,然后使用Number
对象作为this
上下文调用Number.prototype.toString
。 在严格模式下, this
上下文保持不变,只需将Number.prototype.toString
与42
作为this
上下文调用Number.prototype.toString
。
(function() {
console.log(typeof this);
}).call(42); // 'object'
(function() {
'use strict';
console.log(typeof this);
}).call(42); // 'number'
链接地址: http://www.djcxy.com/p/14995.html
上一篇: Why "use strict" improves performance 10x in this example?