Python子类方法的调用(类方法)

class S(object):
def Test(self):
print("TEST")
@classmethod
def Test02(cls):
print("class")
@staticmethod
def Test03():
print("Test03")
class Test2(S):
@classmethod
def Test02(cls):
print(cls)
print("Test02 Method")
a=S()
a.Test()#第一种调用方法
S.Test(a)#第二种调用方法,必须传入实例的引用
print("类方法调用")
a.Test02()#第一种调用方法
S.Test02()#类方法不需要传递实例的引用
print("静态方法")
a.Test03()#不需要传入实例
S.Test03()#使用静态方法调用
print("子类方法调用")
c=Test2()
c.Test02()#第一种实例用
Test2.Test02()#第二种类调用化调
上一篇:作业一:android开发平台的演变以及Android Studio设置


下一篇:STL 简介,标准模板库