码迷,mamicode.com
首页 > 其他好文 > 详细

调用未绑定的父类方法和使用supper 函数 之间的选择.

时间:2016-07-17 11:18:39      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

class New_int(int):   # 定义一个新的类  继承 int 类
    def __add__(self,other):   # 重写 + 运算符 # __add__ 就是 int 中 +  的行为
        return int.__sub__(self,other)    # 重写的 加法运算符 调用 int类 里面的 减法运算运算符

    def __sub__(self,other):
        return int.__add__(self,other)


# 上面的是一个小小的恶作剧 . 把加法和减法的名称进行了互换.
1 >>> a=New_int(5)
2 >>> b=New_int(3)
3 >>> a+b
4 2

 

上面的是调用未绑定的父类方法.

下面是使用super函数

class New_int(int):   # 定义一个新的类  继承 int 类
    def __add__(self,other):   # 重写 + 运算符 # __add__ 就是 int 中 +  的行为
        return super.__sub__(self,other)    # 重写的 加法运算符 调用 int类 里面的 减法运算运算符

    def __sub__(self,other):
        return super.__add__(self,other)


# 上面的是一个小小的恶作剧 . 把加法和减法的名称进行了互换.
=============== RESTART: C:/Users/Administrator/Desktop/new.py ===============
>>> a=New_int(5)
>>> b=New_int(3)
>>> a+b
Traceback (most recent call last):
  File "<pyshell#12>", line 1, in <module>
    a+b
  File "C:/Users/Administrator/Desktop/new.py", line 3, in __add__
    return super.__sub__(self,other)    # 重写的 加法运算符 调用 int类 里面的 减法运算运算符
AttributeError: type object super has no attribute __sub__

可见当使用super的时候 报错提示 super中没有__sub__   .......然而我不知道为什么会这样 . 网上没找到相关资料 . 等学的多了 ,再来看看 .

 

1 class int(int):
2     def __add__(self,other):
3         return int.__sub__(self,other)
4 
5     ‘‘‘def __sub__(self,other):
6         return int.__add__(self,other)‘‘‘
7 #   上面的 两个重写只能在同一时间内重写一个 , 不然的话  , 就会报错.....
8 #   当写第二个的  add 的时候 系统不知道 会认为是 你重写的 add 然后程序就崩溃了.  

 

调用未绑定的父类方法和使用supper 函数 之间的选择.

标签:

原文地址:http://www.cnblogs.com/A-FM/p/5677325.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!