Replace this if-then-else statement by a single return statement(将此 if-then-else 语句替换为单个 return 语句)
问题描述
在解决 sonarQube 问题时,我面临以下警告,有没有人告诉我如何克服这个警告
While solving sonarQube issue i face the below warning,does any one tell me how to overcome this warning
方法:-
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Division other = (Division) obj;
if (divisionId != other.divisionId)
//getting warning for above if condition
return false;
return true;
}
警告:
用一个 return 语句替换这个 if-then-else 语句.
说明:-
应该简化包装成 if-then-else 的布尔文字语句的返回.
推荐答案
嗯,你可以替换:
if (divisionId != other.divisionId)
return false;
return true;
与等价物:
return divisionId == other.divisionId;
如果 divisionId != other.divisionId
则返回 false
,否则返回 true
.
This will return false
if divisionId != other.divisionId
and true
otherwise.
这篇关于将此 if-then-else 语句替换为单个 return 语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将此 if-then-else 语句替换为单个 return 语句


基础教程推荐
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 降序排序:Java Map 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01