在 Java 中切换布尔变量的最简洁方法?
有没有比简单的 if-else 更好的方法来否定 Java 中的布尔值?
Is there a better way to negate a boolean in Java than a simple if-else?
if (theBoolean) {
theBoolean = false;
} else {
theBoolean = true;
}
推荐答案
theBoolean = !theBoolean;
相关文章