Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道我们可以用 PHP,但我找不到任何关于 Java 的东西
if (bool1 AND bool2) {...}
代替 :
if (bool1 && bool2) {...}
不,你不能,你必须使用&&/||来检查第一个条件,如果它是假的,它甚至不会检查第二个。如果您使用&/|它会检查两者,而不管第一个。
&&
||
&
|