In C++, is the ?: operator faster than if()...else statements? Are there any differences between them in compiled code?
|
Depends on your compiler, but on any modern compiler there is generally no difference. It's something you shouldn't worry about. Concentrate on the maintainability of your code. |
|||||||||||||||||||
|
|
It is not faster. There is one difference when you can initialize a constant variable depending on some expression:
You can't do the same with |
|||||||||||||||||||
|
|
I've seen GCC turn the conditional operator into There's no guarantee that they'll compile to the same code. If you need the performance then, as always, measure. And when you've measured and found out that 1. your code is too slow, and 2. it is this particular chunk of code that is the culprit, then study the assembly code generated by the compiler and check for yourself what is happening. Don't trust golden rules like "the compiler will always generate more efficient code if I use the conditional operator". |
||||
|
|
They are the same, however, the ternary operator can be used in places where it is difficult to use a if/else:
Doing that statement with an if/else, would generate a very different compiled code. |
|||||||||
|
|
Now I can't help you with that, I may be able to help with a secondary question beneath it, do I want to use it? If you just want to know of the speed, just ignore my comment. All I can say is please be very smart about when to use the ternary ? : operator. It can be a blessing as much as a curse for readability. Ask yourself if you find this easier to read before using it
Yes It looks stupid to make the code 100% bogus. But that little trick helped me analyse my readability of code. It's the readability of the operator you look at in this sample, and not the content. It LOOKS clean, but so does the average toilet seat and doorknob In my experience, which is limited, I have seen very little people actually being able to quickly extradite information required from a ternary operator, avoid unless 100% sure it's better. It's a pain to fix when it's bugged aswell I think |
|||||||||||||||
|
|
No, they are converted to exactly the same executable code. |
|||||||||
|
|
I would expect that on most compilers and target platforms, there will be cases where "if" is faster and cases where ?: is faster. There will also be cases where one form is more or less compact than the other. Which cases favor one form or the other will vary between compilers and platforms. If you're writing performance-critical code on an embedded micro, look at what the compiler is generating in each case and see which is better. On a "mainstream" PC, because of caching issues, the only way to see which is better is to benchmark both forms in something resembling the real application. |
|||
|
|
|
In C A ternary operator " ? : " is available to construct conditional expressions of the form
where exp1,exp2 and exp3 are expressions for Example
This can be written using if..else statement as follows
*Hence there is no difference between these two. This for the programmer to write easily, but for compiler both are same. |
||||
|
|
|
During reversing some code (which I don't remember, few years ago) I saw single line difference between the Machine Code of :? and if-else.
But I advise You to not choose one of them b'coz of its efficiency, choose according to readability of code or your convenience. Happy Coding |
|||
|
|
Ternary Operator always returns a value. So in situation when you want some output value from result and there are only 2 conditions always better to use ternary operator. Use if-else if any of the above mentioned conditions are not true. |
|||
|
|
ifallows statements. – Gumbo Aug 25 '10 at 11:37