如何创建 AND 或 OR 表达式?
我这样写:
if( a == -11 && b == -1 ){
{
if( a == -1) AND ( b == -1)...
但是两者都不起作用,而且我对 OR
也有同样的问题。如何编写包含 OR
或 AND
的表达式?
I wrote this:
if( a == -11 && b == -1 ){
{
if( a == -1) AND ( b == -1)...
But neither work, and I have the same problem with OR
. How do I write expressions that include OR
or AND
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
&&
表示“and”,使用||
表示“or”。You use
&&
for “and”, and||
for “or”.(a == -11 && b == -1)
很好而且正确。 Objective-C 使用与 C 相同的逻辑运算符。||
是逻辑或运算符。(a == -11 && b == -1)
is fine and correct. Objective-C uses all of the same logical operators as C.||
is the logical-or operator.如果在 C 中完全合法,那么 Objective-C 也是如此。
你的第二个例子不是 C 或 Objective-C
if perfectly legal in C, and therefore Objective-C.
Your second example is not C or Objective-C