python靜態(tài)方法的用法
1、通過裝飾器@staticmethod定義靜態(tài)方法。
2、@staticmethod必須寫在方法上。
3、在靜態(tài)方法中訪問實(shí)例屬性和實(shí)例方法會導(dǎo)致錯誤。
4、調(diào)用格式:“類名.靜態(tài)方法名(參數(shù)列表)”
實(shí)例
classPerson:
#類屬性
school="中加楓華國際學(xué)校"
tuition=100000
count=0
#實(shí)例屬性
def__init__(self,name,age):
self.name=name
self.age=age
Person.count=Person.count+1
#靜態(tài)實(shí)例
@staticmethod
defaddNum(a,b):
print("{0}+{1}={2}".format(a,b,a+b))
returna+b
#實(shí)例方法
defget_score(self):
print("姓名:{0};年齡:{1}".format(self.name,self.age))
stu1=Person("sue",22)
stu1.get_score()
Person.addNum(1,2)
以上就是python靜態(tài)方法的用法,希望對大家有所幫助。更多Python學(xué)習(xí)教程請關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。