码迷,mamicode.com
首页 > 编程语言 > 详细

[小甲鱼]入门学习python笔记 【魔法方法】

时间:2018-03-25 12:38:13      阅读:394      评论:0      收藏:0      [点我收藏+]

标签:int   运算符重载   实例化   bsp   入门学习   python笔记   inf   第一个   pos   

//__new__(cls[,....])
//对象实例化调用的第一个方法,它的第一个参数是这个类,而其他参数会直接传递给__init__()方法
//需要在基类的基础上对其进行修改时重写__new__()方法

技术分享图片

//__del__()方法
//只有在该类实例化的对象全部被del掉时,才调用__del__()方法

技术分享图片

//python 中的运算符重载

class New_int(int):   //基于基类int的子类New_int
    def__add__(self,other)    //重载运算符 +
        return int.__sub__(self,other)   //返回基类的减法运算

class New_Int(int):
    def__add__(self,other):
        return int(self)-int(other)   // 等价于int. __sub__(self,other)

>>>a = New_Int(1)
>>>b = New_int(3

 

[小甲鱼]入门学习python笔记 【魔法方法】

标签:int   运算符重载   实例化   bsp   入门学习   python笔记   inf   第一个   pos   

原文地址:https://www.cnblogs.com/Latticeeee/p/8643774.html

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