如果布尔表达式超过标准行宽(80字符),则断行且要求逻辑操作符置于行尾。例如:
if (this_one_thing > this_other_thing && a_third_thing == a_fourth_thing && yet_another & last_one) { ... }
有多个逻辑操作符时,考虑使用圆括号()提示运算优先级
()