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