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 语句
基础教程推荐
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
