其他分享
首页 > 其他分享> > idea代码规范提示感叹号非运算符不利于快速理解

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)) {
        // ...
    }

标签:represent,逻辑,628,idea,取反,运算符,感叹号,Use
来源: https://blog.csdn.net/ChunwaiLeung/article/details/122448703