I've always wondered how to write the "A ? B : C" syntax in a C++ compatible language.
I think it works something like: (Pseudo code)
If A > B
C = A
Else
C = B
Will any veteran C++ programmer please help me out?
|
|
I've always wondered how to write the I think it works something like: (Pseudo code)
Will any veteran C++ programmer please help me out?
|
|||
|
|
|
|
It works like this:
It's most commonly used in assignment operations, although it has other uses as well. The ternary operator For example:
is the same as
|
||||||
|
|
|
I assume you mean stuff like a = b ? c : d, where b is the condition, c is the value when b is true, and d is the value when b is false. |
||
|
|
|
|
In c++ there's no actual if part of this. It's called the ternary operator. It's used like this: <boolean statement> ? <result if true> : <result if false>; For your example above it would look like this:
This article on wikipedia also discusses it: http://en.wikipedia.org/wiki/Ternary_operation |
||
|
|
|
|
It works like this:
Which basically means that if Remember that trueValue and falseValue will only be evaluated and executed if the expression is true or false, respectively. This behavior is called short circuiting. |
||
|
|