设法让你的程序结构符合目的。例如:if (booleanExpression) { return true;} else { return false;}应该代之以如下方法:return booleanExpression;类似地:if (condition) { return x;}return y;应该写做:return (condition ? x : y);