What does this line of code mean?
label.frame = (inPseudoEditMode) ? kLabelIndentedRect : kLabelRect;
The ? and : confuse me.
|
What does this line of code mean?
The ? and : confuse me. |
||||
|
This is the C ternary operator (Objective-C is a superset of C):
is semantically equivalent to
|
|||||||||
|
|
It's the tertiary operator. It's basic form is:
Where the values will only be evaluated if they are chosen. |
|||||
|
|
Building on Barry Wark's excellent explanation... What is so important about the ternary operator is that it can be used in places that an if-else cannot. ie: Inside a condition or method parameter.
...which is a great use for preprocessor constants:
This saves you from having to use and release local variables in if-else patterns. FTW! |
||||
|
|
|
This is part of C, so it's not Objective-C specific. Here's a translation into an
|
|||
|
|
|
That's just the usual ternary operator. If the part before the question mark is true, it evaluates and returns the part before the colon, otherwise it evaluates and returns the part after the colon.
is like
|
|||
|
|
|
It's the ternary if-then-else operator |
|||
|
|
|
It's just a short form of writing an in-then-else statement. It means the same as the following code:
|
|||
|
|
variable ?: anotherVariable, what does this mean?' – Tony Dec 30 '11 at 17:31(valOrVar != 0) ? valOrVar : anotherValorvar– Scott Lahteine Mar 24 '12 at 2:11