一 python自动化基础能力:3.python基础上之数据类型,函数(23)


class A(object):count = 0def __init__(self):#实例属性self.name = 'Tom'def test(self):#实例方法print('in test')@classmethoddef test2(cls):#实例方法print('in test2',cls)print(cls.count)@staticmethoddef test3():print('in test3')a = A()A.test3()a.test3()
打印
in test3in test3
静态方法,基本上是一个和当前类无关的方法,它只是一个保存到当前类中的函数;
静态方法一般是工具方法,和当前类无关 。