加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

在python中覆盖truediv

发布时间:2020-12-20 11:32:10 所属栏目:Python 来源:网络整理
导读:在 Python 2.7.5中,我尝试了以下方法: class compl1: def __mul__(A,B): adb=56 return adb def __truediv__(A,B): adb=56 return adbu=compl1()z=compl1()print u*zprint u/z 为什么只有u * z工作,而u / z给出: TypeError: unsupported operand type(s) f
在 Python 2.7.5中,我尝试了以下方法:

class compl1:
    def __mul__(A,B):
        adb=56
        return adb

    def __truediv__(A,B):
        adb=56
        return adb

u=compl1()
z=compl1()
print  u*z
print u/z

为什么只有u * z工作,而u / z给出:

TypeError: unsupported operand type(s) for /: 'instance' and 'instance'

解决方法

在Python 2中,除非你添加:

from __future__ import division

没有使用__truediv__钩子.通常使用__div__代替:

>>> class compl1:
...     def __div__(self,B):
...         return 'division'
...     def __truediv__(self,B):
...         return 'true division'
... 
>>> compl1() / compl1()
'division'
>>> from __future__ import division
>>> compl1() / compl1()
'true division'

使用from __future__ import,旧的Python 2 /运算符将替换为Python 3行为,而使用该运算符的所有数字除法都会导致浮点结果.在Python 2中,如果你使用了两个int值,那么你就会得到分区,这很令人困惑.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读