It's diffi开发者_如何学编程cult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current for
It's diffi开发者_如何学编程cult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Logical Operators in objective c language?
Random stab in the dark at what you're asking:
yes, Objective-C has logical operators. They are exactly the same as in C
&& is and || is or ! is not
so an expression !a || b can be read as "(not a) or b"
精彩评论