idea代码规范提示感叹号非运算符不利于快速理解

"!"运算符不利于快速理解。 
 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)) {
        // ...
    }

上一篇:2021-03-16-vue项目整合网页端框架element-ui,整合手机端框架vant操作步骤


下一篇:Qt 报错:use of undeclared identifier