鱼C论坛

 找回密码
 立即注册
查看: 2061|回复: 0

[技术交流] Python--042魔法方法:算术运算

[复制链接]
发表于 2017-7-23 17:47:15 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
Tip:


一,理论


二,应用
1
>>> class Try_int(int):
        def __add__(self, other):
                return self + other

       
>>> a = Try_int(3)
>>> b = Try_int(2)
>>> a + b
Traceback (most recent call last):
  File "<pyshell#34>", line 1, in <module>
    a + b
  File "<pyshell#30>", line 3, in __add__
    return self + other
  File "<pyshell#30>", line 3, in __add__
    return self + other
  File "<pyshell#30>", line 3, in __add__
    return self + other
  [Previous line repeated 327 more times]
RecursionError: maximum recursion depth exceeded while calling a Python object

2
>>> class Try_int(int):
        def __add__(self, other):
                return int(self) + int(other)              #还是没太理解,为啥转化整形之后就可以出结果,相加的不是方法吗

       
>>> a = Try_int(3)
>>> b = Try_int(2)
>>> a + b
5
三,课后练习

评分

参与人数 1鱼币 +1 收起 理由
小甲鱼 + 1

查看全部评分

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 16:45

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表