我知道在Java中它是&&。 Objective-C是什么?要么是错误的,要么我的其他代码不起作用,因为它没有做布尔值。真正的快速是什么呢?
答案 0 :(得分:4)
“AND”语句的语法是:(statement&& statement)
“OR”语句的语法是:(statement || statement)
听起来你的其他代码可能就是问题。
您还可以将这些语句组合成
之类的内容((true || false) && (true || false))
//in this example it simplifies to
(true) && (false)
(false)
答案 1 :(得分:1)
if (condition1 && condition2) {
// code executes only if both conditions are true
}
if (condition3 || condition4) {
// code executes if either condition is true
}