我是否可以使用任何规则来限制以下if
条语句:
if ( null == name ) {
...
}
基本上,null
应该始终位于语句的右侧,例如
if ( name == null ) {
...
}
答案 0 :(得分:2)
Sevntu有一个名为AvoidConstantAsFirstOperandInConditionCheck
的自定义支票,它可以满足您的需求。
$ cat TestClass.java
public class TestClass {
void method() {
if ( null == name ) {} // violation
if ( name == null ) {} // OK
}
}
$ cat TestConfig.xml
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"https://checkstyle.org/dtds/configuration_1_3.dtd">
<module name="Checker">
<property name="charset" value="UTF-8"/>
<module name="TreeWalker">
<module name="com.github.sevntu.checkstyle.checks.coding.AvoidConstantAsFirstOperandInConditionCheck" />
</module>
</module>
$ java -jar checkstyle-8.9-sevntu-1.29.0-all.jar -c TestConfig.xml TestClass.java
Starting audit...
[ERROR] TestClass.java:3: Constant have to be second operand of '=='. [AvoidConstantAsFirstOperandInCondition]
Audit done.
Checkstyle ends with 1 errors.