用一个return语句替换这个if-then-else语句 [英] Replace this if-then-else statement by a single return statement

查看:5678
本文介绍了用一个return语句替换这个if-then-else语句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在解决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;

如果<$ c,这将返回 false $ c> divisionId!= other.divisionId 和 true 否则。

This will return false if divisionId != other.divisionId and true otherwise.

这篇关于用一个return语句替换这个if-then-else语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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