"!"运算符不利于快速理解。
Inspection info:
避免采用取反逻辑运算符。 说明: 取反逻辑不利于快速理解,并且取反逻辑写法必然存在对应的正向逻辑写法。
反面例子:
// Use `if (!(x >= 628))` to represent that x is less than 628.
if (!(x >= 628)) {
// ...
}
正面例子:
// Use `if (x < 628)` to represent that x is less than 628.
if (x < 628)) {
// ...
}