码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2016-05-19 18:57:05      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

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()#第二种类调用化调

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

标签:

原文地址:http://www.cnblogs.com/douyunqian3520/p/5509532.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!