[Python] NotImplemented 和 NotImplementedError 区别

来源:互联网 发布:php导入excel到数据库 编辑:程序博客网 时间:2024/06/07 12:21

NotImplemented 是一个非异常对象,NotImplementedError 是一个异常对象。

>>> NotImplementedNotImplemented>>> NotImplementedError<type 'exceptions.NotImplementedError'>>>> type(NotImplemented)<type 'NotImplementedType'>>>> type(NotImplementedError)<type 'type'>

如果抛出 NotImplemented 会得到 TypeError,因为它不是一个异常。而抛出 NotImplementedError 会正常捕获该异常。

>>> raise NotImplementedTraceback (most recent call last):  File "<pyshell#10>", line 1, in <module>    raise NotImplementedTypeError: exceptions must be old-style classes or derived from BaseException, not NotImplementedType>>> raise NotImplementedErrorTraceback (most recent call last):  File "<pyshell#11>", line 1, in <module>    raise NotImplementedErrorNotImplementedError

为什么要存在一个 NotImplemented 和一个 NotImplementedError 呢?

在 Python 中对列表进行排序时,会经常间接使用像 __lt__() 这类比较运算的方法。

有时 Python 的内部算法会选择别的方法来确定比较结果,或者直接选择一个默认的结果。如果抛出一个异常,则会打破排序运算,因此如果使用 NotImplemented 则不会抛出异常,这样 Python 可以尝试别的方法。

NotImplemented 对象向运行时环境发出一个信号,告诉运行环境如果当前操作失败,它应该再检查一下其他可行方法。例如在 a == b 表达式,如果 a.__eq__(b) 返回 NotImplemented,那么 Python 会尝试 b.__eq__(a)。如果调用 b 的 __eq__() 方法可以返回 True 或者 False,那么该表达式就成功了。如果 b.__eq__(a) 也不能得出结果,那么 Python 会继续尝试其他方法,例如使用 != 来比较。


ref:http://www.cnblogs.com/ifantastic/p/3682268.html

0 0