有没有比简单的 if-else 更好的方法来否定 Java 中的布尔值?
if (theBoolean) { theBoolean = false; } else { theBoolean = true; }
theBoolean = !theBoolean;