- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
下面的代码是我还是python搞混了?我希望 __le__
由 a <= ab
调用, 不是 __ge__
:
#!/usr/bin/env python2
class B(object):
def __ge__(self, other):
print("__ge__ unexpectedly called")
class A(object):
def __le__(self, other):
print("__le__ called")
class AB(A, B):
pass
a = A()
ab = AB()
a <= ab # --> __ge__ unexpectedly called
ab <= a # --> __le__ called
我在 python 2.7、3.2 和 pypy 1.9 中得到了相同的行为。
我该怎么做才能得到 __le__
调用而不是 __ge__
??
最佳答案
简短的回答是他们想要允许 AB
覆盖 A
中的行为. Python 无法调用 AB.__lt__(a, ab)
,因为 a
可能不是有效的 self
对于 AB
方法,因此它调用 AB.__gt__(ab, a)
, 这是有效的。
长答案有点复杂。
根据 rich comparison operators 的文档:
There are no swapped-argument versions of these methods (to be used when the left argument does not support the operation but the right argument does); rather,
__lt__()
and__gt__()
are each other’s reflection,__le__()
and__ge__()
are each other’s reflection, and__eq__()
and__ne__()
are their own reflection.
换句话说,x <= y
会调用y.__ge__(x)
在完全相同的情况下 x+y
会调用y.__radd__(x)
.比较:
>>> class X(object):
... def __add__(self, other):
... print('X.add')
>>> class Y(object):
... def __radd__(self, other):
... print('Y.radd')
>>> class XY(X, Y):
... pass
>>> x, xy = X(), XY()
>>> x + xy
Y.radd
根据 reflected operators 的文档:
These methods are called to implement the binary arithmetic operations… with reflected (swapped) operands. These functions are only called if the left operand does not support the corresponding operation and the operands are of different types…
Note: If the right operand’s type is a subclass of the left operand’s type and that subclass provides the reflected method for the operation, this method will be called before the left operand’s non-reflected method. This behavior allows subclasses to override their ancestors’ operations.
所以,因为 XY
是 X
的子类, XY.__radd__
优先于 X.__add__
.同样,因为 AB
是 A
的子类, AB.__ge__
优先于 A.__le__
.
这可能应该更好地记录下来。要弄清楚,你必须忽略括号“当左参数不支持操作但右参数支持时使用”,猜测你需要查找正常的交换运算符(没有链接,甚至提到,这里),然后忽略“这些函数仅在左操作数不支持相应操作时调用”的措辞,并查看“注意”,这与上面的内容相矛盾......还要注意文档明确地说,“比较运算符之间没有隐含的关系”,只有在描述交换案例之前的一段,暗示了这种关系……
最后,这个案例看起来很奇怪,因为 AB
, 而不是覆盖 __ge__
本身,只是继承自 B
, 它对 A
一无所知并且与之无关。大概是B
不打算让它的子类覆盖 A
的行为。但是如果B
旨在用作 A
的混音-派生类,也许它会恰好打算进行这样的覆盖。无论如何,该规则可能已经足够复杂,无需深入了解每个方法在 MRO 中的来源。无论推理如何,__ge__
在哪里来自无关紧要;如果它存在于子类中,它就会被调用。
对于你添加的最后一个问题,“我能做些什么来让 __le__
被调用而不是 __ge__
??”......好吧,你真的不能,就像你可以得到 X.__add__
一样调用而不是 XY.__radd__
.当然你总是可以实现 AB.__ge__
(或 XY.__radd__
)调用 A.__le__
(或 X.__add__
),但可能更容易实现 AB.__ge__
以这样一种方式,它与 A
一起工作首先作为它的另一个论点。或者,您可以删除继承并找到一些其他方式来建模您正在建模的任何方式。或者您可以显式调用 a.__le__(ab)
而不是 a<=ab
.但除此之外,如果您以利用“无隐含关系”的方式设计您的类来做一些奇怪的事情,那么您将被文档误导,并且将不得不以某种方式重新设计它们。
关于__le__、__ge__ 的 python 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13799386/
我已经使用 vue-cli 两个星期了,直到今天一切正常。我在本地建立这个项目。 https://drive.google.com/open?id=0BwGw1zyyKjW7S3RYWXRaX24tQ
您好,我正在尝试使用 python 库 pytesseract 从图像中提取文本。请找到代码: from PIL import Image from pytesseract import image_
我的错误 /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference
我已经训练了一个模型,我正在尝试使用 predict函数但它返回以下错误。 Error in contrasts<-(*tmp*, value = contr.funs[1 + isOF[nn]])
根据Microsoft DataConnectors的信息我想通过 this ODBC driver 创建一个从 PowerBi 到 PostgreSQL 的连接器使用直接查询。我重用了 Micros
我已经为 SoundManagement 创建了一个包,其中有一个扩展 MediaPlayer 的类。我希望全局控制这个变量。这是我的代码: package soundmanagement; impo
我在Heroku上部署了一个应用程序。我正在使用免费服务。 我经常收到以下错误消息。 PG::Error: ERROR: out of memory 如果刷新浏览器,就可以了。但是随后,它又随机发生
我正在运行 LAMP 服务器,这个 .htaccess 给我一个 500 错误。其作用是过滤关键字并重定向到相应的域名。 Options +FollowSymLinks RewriteEngine
我有两个驱动器 A 和 B。使用 python 脚本,我在“A”驱动器中创建一些文件,并运行 powerscript,该脚本以 1 秒的间隔将驱动器 A 中的所有文件复制到驱动器 B。 我在 powe
下面的函数一直返回这个错误信息。我认为可能是 double_precision 字段类型导致了这种情况,我尝试使用 CAST,但要么不是这样,要么我没有做对...帮助? 这是错误: ERROR: i
这个问题已经有答案了: Syntax error due to using a reserved word as a table or column name in MySQL (1 个回答) 已关闭
我的数据库有这个小问题。 我创建了一个表“articoli”,其中包含商品的品牌、型号和价格。 每篇文章都由一个 id (ID_ARTICOLO)` 定义,它是一个自动递增字段。 好吧,现在当我尝试插
我是新来的。我目前正在 DeVry 在线学习中级 C++ 编程。我们正在使用 C++ Primer Plus 这本书,到目前为止我一直做得很好。我的老师最近向我们扔了一个曲线球。我目前的任务是这样的:
这个问题在这里已经有了答案: What is an undefined reference/unresolved external symbol error and how do I fix it?
我的网站中有一段代码有问题;此错误仅发生在 Internet Explorer 7 中。 我没有在这里发布我所有的 HTML/CSS 标记,而是发布了网站的一个版本 here . 如您所见,我在列中有
如果尝试在 USB 设备上构建 node.js 应用程序时在我的树莓派上使用 npm 时遇到一些问题。 package.json 看起来像这样: { "name" : "node-todo",
在 Python 中,您有 None单例,在某些情况下表现得很奇怪: >>> a = None >>> type(a) >>> isinstance(a,None) Traceback (most
这是我的 build.gradle (Module:app) 文件: apply plugin: 'com.android.application' android { compileSdkV
我是 android 的新手,我的项目刚才编译和运行正常,但在我尝试实现抽屉导航后,它给了我这个错误 FAILURE: Build failed with an exception. What wen
谁能解释一下?我想我正在做一些非常愚蠢的事情,并且急切地等待着启蒙。 我得到这个输出: phpversion() == 7.2.25-1+0~20191128.32+debian8~1.gbp108
我是一名优秀的程序员,十分优秀!