zoukankan      html  css  js  c++  java
  • [Python] NotImplemented 和 NotImplementedError 区别

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

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

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

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

    为什么要存在一个 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 会继续尝试其他方法,例如使用 != 来比较。  

    参考一

  • 相关阅读:
    php开发_图片验证码
    php开发_php环境搭建
    中序线索二叉树算法
    WPF技巧(1)异步绑定
    WPF技巧(2)绑定到附加属性
    nhibernate 抓取策略
    wpf 控件开发基础(6) 单一容器(Decorator)
    WPF技巧(3)监测属性变更
    Caliburn v2 变更启动初始化
    wpf单容器中的Chrome
  • 原文地址:https://www.cnblogs.com/ifantastic/p/3682268.html
Copyright © 2011-2022 走看看