特殊方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了特殊方法相关的知识,希望对你有一定的参考价值。

#特殊方法
class Rectangle():
def __init__(self,width,height):
self.width = width
self.height = height
#def __str__(self): #print调用方法
#return‘宽%s,高%s‘%(self.width,self.height)

def __repr__(self):#repr会影响print
return ‘面积为%s‘%self.area()

def area(self):
return self.width*self.height
c1 = Rectangle(3,4)
#str这个类有两个方法,一个是__str__,__repr__
#__repr__会影响__str__
#如字符串 s = ‘avf\nd‘
#s= avf\nd
#print(s),会变成 avf 换行 d.print调用的是str方法

以上是关于特殊方法的主要内容,如果未能解决你的问题,请参考以下文章

Python类的特殊方法

python特殊方法解析

Python入门-6面向对象编程:10特殊方法和运算符重载-特殊属性

特殊成员方法

面向对象:类中的特殊方法

菜鸟心得_Python中的特殊方法