gpt4 book ai didi

python - 有一个 "this should never happen"声明是好的做法吗

转载 作者:行者123 更新时间:2023-11-28 22:13:40 26 4
gpt4 key购买 nike

在 python 中(以及一般的编码,真的)是一个不应该发生的错误的好习惯,还是只是代码困惑?

例如

if thing:
num = 1
elif thing2:
num = 2
else:
num = 3

#Lots of other code goes here interacting with num, but not modifying it

if num == 1:
option1()
elif num == 2:
option2()
elif num == 3:
option3()
else:
#this should never happen
print("Instead of being 1, 2, or 3, num was " + str(num))
raise Exception("Error! num was an unexpected value!")

所以基本上,包括最后的 else(永远不应该发生)是好的做法,还是只是让代码变得困惑?

我的实际代码比这更复杂——具体来说,num 在主循环中赋值,然后传递给函数。也许它值得包括在内,因为该函数可能会从其他地方调用,并且 num 的值不正确?

最佳答案

处理默认条件通常被认为是好的做法,即使在当前代码中无法访问也是如此。这样做的原因是代码会随着时间的推移而增长和转移所有权,而目前看来无法实现的情况很可能在未来发生。在这种情况下,最好像您一样引发异常,而不是有未指定的行为。

关于python - 有一个 "this should never happen"声明是好的做法吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53788425/

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