gpt4 book ai didi

python - 异常派生类的 __repr__ 效果不佳

转载 作者:行者123 更新时间:2023-11-30 21:53:31 26 4
gpt4 key购买 nike

我尝试在继承自 Exception 的对象上使用 __repr__ 方法。

但没有打印任何内容!

谁能帮忙解释一下为什么吗?

class MyException(Exception):
def __repr__(self):
return "MyException Object"


try:
raise MyException()
except MyException as e:
print(e) # shows nothing!

最佳答案

因为MyException继承了Exception.__str__,这是print首先查阅的内容(因为隐式调用是对 str(e),如果 __str__ 不存在,则仅在内部回退到 __repr__

奇怪的是,Exception.__str__ 返回一个空字符串:

>>> str(Exception())
''

我想尝试一下它,它会返回作为参数传递给 Excpetion 的任何内容

>>> str(Exception(1))
'1'
>>> str(Exception(None))
'None'
>>> str(Exception(None, True))
'(None, True)'

所以重写__str__。或者更好的是,除了:

class MyException(Exception):
def __repr__(self):
return "MyException Object"
__str__ = __repr__

关于python - 异常派生类的 __repr__ 效果不佳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59643308/

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