Python的方法分类

1.Python的类方法,实例方法,和静态方法

class S(object):
def Test(self):
print("TEST")
@classmethod#类方法
def Test02(cls):
print("class")
@staticmethod#静态方法
def Test03():
print("Test03")
a=S()
a.Test()#第一种调用方法
S.Test(a)#第二种调用方法,必须传入实例的引用
print("类方法调用")
a.Test02()#第一种调用方法
S.Test02()#类方法不需要传递实例的引用
print("静态方法")
a.Test03()#不需要传入实例
S.Test03()#使用静态方法调用
上一篇:部分手机不能连PC adb


下一篇:C学习笔记-一些知识