In Objective C does the Conditional-AND operator(&&) show short circuit behavior as in Java? (Meaning right hand part will only be evaluated if left hand part is true) Strangely I couldn’t find info on it.
In Objective C does the Conditional-AND operator(&&) show short circuit behavior as in Java?
Share
Objective-c is a strict superset of c and basically follows the same standard. So as AND operator is short-circuited in c, it is the same in objective-c