英文:
How to compare one getter method with return type as integer with a constant int variable in java
问题
这是我的代码:
public boolean isCalled() {
if (getABC() == Constants.XYZ)
return true;
else
return false;
}
我需要在比较函数中获得一个布尔返回值。有没有一种类似于 StringUtils.equals
用于比较字符串的智能方法呢?
英文:
Here is my code :
public boolean isCalled() {
if(getABC() == Constants.XYZ)
return true;
else
return false;
}
I need to get a boolean return value of my compare function. Is there a way to do this in smart way (just like StringUtils.equals
for comparing strings)?
答案1
得分: 2
你不需要那个 if
。==
返回一个布尔值,你可以直接返回它:
public boolean isCalled() {
return getABC() == Constants.XYZ;
}
英文:
You don't need the if
. The ==
returns a boolean, and you can just return this directly:
public boolean isCalled() {
return getABC() == Constants.XYZ;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论