将此 if-then-else 语句替换为单个 return 语句 [英] Replace this if-then-else statement by a single return statement

查看:71
本文介绍了将此 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 语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆