I wonder if Objective-C does care about whether I write & or &&? I believe one ampersand (&) would or should cause that if the LEFT side is already false, then the right side won't be evaluated.
Does this apply to Objective-C?
|
I wonder if Objective-C does care about whether I write & or &&? I believe one ampersand (&) would or should cause that if the LEFT side is already false, then the right side won't be evaluated. Does this apply to Objective-C? |
||||
|
|
|
Yes. The operators function identically in C and Objective-C. Just like in C (or C++, if you're using Objective-C++) |
|||||||||
|
|
Objective-C uses the C bitwise and logical operators (& is bitwise and && is logical). The single & will evaluate both expressions. |
|||
|
|