if (a < 101) 是否比 if (a <= 100) 快,请分别告诉 javascript 和 php?
Is if (a < 101) faster than if (a <= 100) , Please tell for javascript and php seperately?
if (a < 101) 是否比 if (a <= 100) 快,请分别解释 javascript 和 php ?
我在 javascript 文件
中编辑了一些代码
初始代码
rect.top>=0&&rect.left>=0&&rect.top<=(window.innerHeight||document.documentElement.clientHeight)
编辑代码后
rect.top>-1&&rect.left>-1&&rect.top<=(window.innerHeight||document.documentElement.clientHeight)
但是我学长说不会很快。所以请帮忙。
没有。它不是更快。在每个可想到的 CPU 的微代码中,两个比较 >
和 >=
转换为相同长度的指令。它不会取决于所使用的编程语言。
if (a < 101) 是否比 if (a <= 100) 快,请分别解释 javascript 和 php ?
我在 javascript 文件
中编辑了一些代码
初始代码
rect.top>=0&&rect.left>=0&&rect.top<=(window.innerHeight||document.documentElement.clientHeight)
编辑代码后
rect.top>-1&&rect.left>-1&&rect.top<=(window.innerHeight||document.documentElement.clientHeight)
但是我学长说不会很快。所以请帮忙。
没有。它不是更快。在每个可想到的 CPU 的微代码中,两个比较 >
和 >=
转换为相同长度的指令。它不会取决于所使用的编程语言。