I read somewhere that the ?: operator in C is slightly different in C++, that there's some source code that works differently in both languages. Unfortunately, I can't find the text anywhere. Does anyone know what this difference is?
|
3
|
|
||
|
|
|
|
The conditional operator in C++ can return an lvalue, whereas C does not allow for similar functionality. Hence, the following is legal in C++:
To replicate this in C, you would have to resort to if/else, or deal with references directly:
There is also a subtle difference in the order of operations, such that:
is valid C++ code, but will throw an error in C without parentheses around the last expression:
|
||||||
|
|
|
For more tutorials on C++ visit theinterviewsuccess.com |
||
|
|
|
|
The principal practical difference is that in C, evaluation of ?: can never result in a l-value where as in C++ it can. There are other differences in its definition which have few practical consequences. In C++ the first operand is converted to a bool, in C it is compared against 0. This is analagous to the difference in definition of ==, !=, etc. between C and C++. There are also more complex rules in C++ for deducing the type of a ?: expression based on the types of the 2nd and 3rd operands. This reflects the possibility of user-defined implicit conversions in C++. Example code. Valid C++; invalid C.
Edit: Although ?: can't return an l-value in C, perhaps surprisingly the grammar for ?: is:
This means that C++ changes the grammar to this:
While the extension to allow conditional-expression to be an l-value in some situations would have made Although I don't have any evidence for it, my supposition that as the grammar change couldn't break compatibility with existing C code, it was more likely that the new grammar would produce fewer surprises with expressions such as:
|
|||
|
|
|
|
Hi There is a subtle difference in the way in which the expression containing a conditional (or ternary operator) is parsed. Please check the 'Notes' section on the page http://en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B#Comparison_operators cheers |
||||
|
