标签:str pre method 对象 方法 class title name 需要
Python3 中类的静态方法、普通方法、类方法
静态方法: 用 @staticmethod 装饰的不带 self 参数的方法叫做静态方法,类的静态方法可以没有参数,可以直接使用类名调用。
普通方法: 默认有个self参数,且只能被对象调用。
类方法: 默认有个 cls 参数,可以被类和对象调用,需要加上 @classmethod 装饰器。
1 class Classname: 2 @staticmethod 3 def fun(): 4 print(‘静态方法‘) 5 6 @classmethod 7 def a(cls): 8 print(‘类方法‘) 9 10 # 普通方法 11 def b(self): 12 print(‘普通方法‘) 13 14 15 16 Classname.fun() 17 Classname.a() 18 19 20 C = Classname() 21 C.fun() 22 C.a() 23 C.b()
标签:str pre method 对象 方法 class title name 需要
原文地址:https://www.cnblogs.com/wind666/p/11668126.html