gpt4 book ai didi

java - 为什么 "else"在 "if x then return"之后很少使用?

转载 作者:IT老高 更新时间:2023-10-28 20:22:18 25 4
gpt4 key购买 nike

这个方法:

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(":)");
}

根据我的经验,第二种形式更常见,尤其是在更复杂的方法中(可能有多个这样的退出点),“抛出”和“返回”也是如此。然而,第一种形式可以说使代码的条件结构更加明确。有什么理由比另一个更喜欢一个吗?

(相关:Should a function have only one return statement?)

最佳答案

在这种情况下,else 将是多余的,并且会为函数的主代码创建不必要的额外缩进。

关于java - 为什么 "else"在 "if x then return"之后很少使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3261849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com