If you were to compare two integers, would the operator have an impact on the time required to perform the comparison? For example, given:
if (x < 60)
and
if (x <= 59)
Which would provide the best performance, or would the performance difference be negligible? Are the performance results language-dependent?
I often find myself mixing the use of these operators within my code. Any thoughts would be appreciated.
x < 60takes 1103,1 picoseconds to execute, andx <= 59takes 1103,2 picoseconds to execute, making it a tenth of a picosecond slower. Mind blown:)See for yourself – Šime Vidas May 2 '11 at 19:10<=is in fact 32% slower (!!) (which is 2.7 nanoseconds on my machine). – Šime Vidas May 2 '11 at 19:18