这种方法:
boolean containsSmiley(String s) {
if (s == null) {
return false;
}
else {
return s.contains(":)");
}
}
等价地可以写成:
boolean containsSmiley(String s) {
if (s == null) {
return false;
}
return s.contains(":)");
}
以我的经验,第二种形式更常见,尤其是在更复杂的方法中(可能有几个这样的退出点),“抛出”和“返回”也是如此。然而,第一种形式可以说使代码的条件结构更加明确。有什么理由更喜欢其中一个吗?