类的特殊方法

类的特殊方法:
#类属性:
 __dict__ # 类的属性(包含一个字典,由类的数据属性组成,类输出的是全局的函数,变量等信息,对象输出的只是对象拥有的普通变量而已)
__doc__ # 类的文档字符串
#类方法: 
__init__    # 初始化
__repr__    # 直接返回这个对象  repr() 函数就是调用对象的这个方法
__str__    # print(obj) 如果类里面定义了__repr__,没有定义__str__  print(obj)也会返回__repr__的内容,或者说__repr__的优先级更高
__call__    # Obj() 使实例可被调用
#运算符方法
__add__(self,other)    #x+y
__sub__(self,other)    #x-y
__mul__(self,other)    #x*y
__mod__(self,other)    #x%y
__iadd__(self,other)    #x+=y
 __isub__(self,other)    #x-=y
__radd__(self,other)    #y+x
__rsub__(self,other)    #y-x
__imul__(self,other)    #x*=y
__imod__(self,other)    #x%=y

你可能感兴趣的:(类的特殊方法)