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.
我只是想知道如何才能像这样在 Java 中获得 NOR 运算符
if (!(foo == "bar" || foo1=="bar1")){ ... }
编辑:我正在寻找一种更有效的方式来编写它
[...]我一直在寻找一种更有效的方式来编写它
Java 中没有 NOR 运算符。你必须像以前那样做
!(A || B)
或者,!A && !B当然。
!A && !B