In C# between >0 and >=1 which is faster and better?
| show 4 more comments |
closed as not a real question by Brian Rasmussen, Henk Holterman, abelenky, Daniel Vandersluis, Graviton Sep 8 '10 at 0:46
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Neither; they both should compile down to the same thing if one is faster or better. More importantly, most programmers will probably find |
|||||||||||||
|
|
The one that is better is the one that most clearly expresses your intent. If you are testing to see if an integer is in the range [1, 6] then you should write it as:
Writing this would work, but doesn't so obviously fulfil the specification:
I'm also assuming that you are talking about integer types here. If you are dealing with floating point or decimal numbers then they are not equivalent. Unless you've profiled your code and found this to be the bottleneck, you shouldn't worry about micro-optimisations. Even so it can be interesting to inspect the code generated by the C# compiler in each case to see if they compiled to the same IL or not. This can be done by using .NET Reflector.
Results in:
Whereas:
results in the following IL:
In both cases the compiler has reversed the comparison. The "greater than or equal to" test was compiled to a "less than" instruction and the "greater than" test was compiled to "less than or equal to". In general the compiler is free to make such modifications and running a different version of the compiler might produce different (but equivalent) bytecode. Given that they don't compile to the same IL, the best way to see which is fastest is to actually run the code in a loop and see how long it takes each version to execute. I tried doing this but I did not see any measurable performance difference between the two ways to write the code. |
|||||
|
|
Not defined. You explicitly ask for C# - but that is something that dependso on the processor architecture, i.e. the CLR runtime compiler. |
|||||||
|
|
The performance difference is going to be negligible between the two (if there even is one). I'm working on proving exactly what it might be (it will be platform dependent since any different would probably come down to the code emitted and executed by JIT). Keep in mind, though, that performance wise this is an extreme micro-optimization is most likely unwarranted. The better choice is going to be which ever is more readable and conveys your intent the best in your code. |
||||
|
|
|
Of course, it depends on the CPU architecture that your program will be run on. On x86 the Edit: Forgot to mention: Any compiler or VM worth its salt should be able to figure out that testing >= 1 is equivalent to testing >0 and perform such a trivial optimization if it even makes a difference at the assembly language level. |
|||
|
|
|
I agree with the other responses that micro-optimizations should not be taken into account usually. However it can be interesting to see which of the two versions has smaller/apparently_faster IL. So :
Translates into : (DEBUG)
(RELEASE)
while
into (DEBUG)
(RELEASE)
As far as I can see the i>=1 is marginally faster than i>0 IN DEBUG MODE In release mode all the diference is at offset 0004 a BLE vs a BLT. I suppose these two IL ops translate into equally CPU consuming native ops.. |
|||||||||||||||
|
|
There is no difference because the cpu internally does a subtraction of the two numbers and inspects the result and overflow. There is no extra step involved for either instruction. When it comes to code it depends on what you are trying to document. >= 1 means that 1 is the lowest possible number. > 0 means that 0 is not allowed. There is a small semantic difference that pros will notice. They will choose the right operator to document their intent. If you think that >= n and >= n + 1 are the same you are mistaken: >= int.MaxValue and > (int.MaxValue + 1) are different^^ |
||||
|
|
|
To answer for the faster one, I'm not sure, but I think they are equivalent. And to answer for the better, I think it depend on the context. |
||||
|
|
|
You won't notice any difference unless possibly in a very very tight loop that is performance critical in your application. Then you need to profile your code anyway to decide which is better. Use the one that makes most sense in your application. |
|||
|
|
|
So usually when I compare something to > 0 or >= 1, I am trying to see if an array/collection contains any elements. If that's the case, instead of using Otherwise, I don't know :) |
|||||||||
|
|
If there would be a difference between the two, then I'd say that this would be such a micro-optimization, which shouldn't affect the overall performance of the application. Moreover, when one is really figuring out whether he has to use > 0 or >= 1, then I'd say the cost for figuring out which one is faster, doesn't outweigh the (minimal) performance benefit. Therefore, I'd also say that you should use the option that most expresses the intention. |
|||
|
|
>0is faster because it is one less character to type. – RedFilter Sep 7 '10 at 18:38cmp eax, ebxfollowed by eitherjg <label>orjge <label>. IIRC the jge (jump if greater or equal) used to be a more expensive assembly operation than jg (jump if greater), but (1) I don't think that's true anymore and (2) the compiler should optimize that out. Still, I think the question is valid because it points to what's under the hood. – Nick Hebb Sep 12 '10 at 10:13