gpt4 book ai didi

javascript - 在 benchmark.js 中使用字符串

转载 作者:行者123 更新时间:2023-11-28 02:37:24 25 4
gpt4 key购买 nike

benchmark.js 的示例应用将其性能测试定义为字符串而不是 JavaScript 函数:

https://github.com/bestiejs/benchmark.js/blob/master/example/jsperf/index.html#L250

以这种方式定义性能测试有优势吗?为什么它不只是一个函数?

最佳答案

据我所知,通过一长串的调用,函数代码最终到达函数 in benchmark.js名为 getSource,无论如何都会将其转换为字符串:

/**
* Gets the source code of a function.
*
* @private
* @param {Function} fn The function.
* @param {String} altSource A string used when a function's source code is unretrievable.
* @returns {String} The function's source code.
*/
function getSource(fn, altSource) {
var result = altSource;
if (isStringable(fn)) {
result = String(fn);
} else if (support.decompilation) {
// escape the `{` for Firefox 1
result = (/^[^{]+\{([\s\S]*)}\s*$/.exec(fn) || 0)[1];
}
// trim string
result = (result || '').replace(/^\s+|\s+$/g, '');

// detect strings containing only the "use strict" directive
return /^(?:\/\*+[\w|\W]*?\*\/|\/\/.*?[\n\r\u2028\u2029]|\s)*(["'])use strict\1;?$/.test(result)
? ''
: result;
}

这是在函数“clock”中完成的,它提供了另一种解释,说明每次调用时钟时从字符串中创建基准函数的动机:

// Compile in setup/teardown functions and the test loop.
// Create a new compiled test, instead of using the cached `bench.compiled`,
// to avoid potential engine optimizations enabled over the life of the test.

我不是 benchmark.js 的专家,但我对它的理解是,该库故意希望从原始代码启动基准测试,迫使编译器/解释器运行以前从未见过的代码。这对我来说确实有意义,因为假设的浏览器在加载时卡住五秒钟以优化代码可能具有惊人的性能,但忽略它在基准测试中编译所花费的五秒钟是不公平的。此外,它对原始代码进行了相当多的修改,以控制范围和异常处理;基准测试只需要代码作为字符串,以便正确操作它。

从这个 Angular 来看,将函数作为字符串传递并不是特别重要,但没有理由不这样做 - 无论如何它最终都会作为字符串。

关于javascript - 在 benchmark.js 中使用字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13278597/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com