staticmethod和classmethod均被作为装饰器,用作定义一个函数为”staticmethod”还是”classmethod”。

classmethod

类方法,即类对象所拥有的方法,需要用修饰器@classmethod来标识其为类方法,对于类方法,第一个参数必须是类对象,一般以cls作为第一个参数(当然可以用其他名称的变量作为其第一个参数,但是大部分人都习惯以’cls’作为第一个参数的名字,就最好用’cls’了),能够通过实例对象和类对象去访问。

1
2
3
4
5
6
7
8
9
10
11
class People(object):
country = 'china'

#类方法,用classmethod来进行修饰
@classmethod
def getCountry(cls):
return cls.country

p = People()
print p.getCountry() #可以用过实例对象引用
print People.getCountry() #可以通过类对象引用

类方法还有一个用途就是可以对类属性进行修改:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class People(object):
country = 'china'

#类方法,用classmethod来进行修饰
@classmethod
def getCountry(cls):
return cls.country

@classmethod
def setCountry(cls,country):
cls.country = country


p = People()
print p.getCountry() #可以用过实例对象引用
print People.getCountry() #可以通过类对象引用

p.setCountry('japan')

print p.getCountry()
print People.getCountry()

结果显示在用类方法对类属性修改之后,通过类对象和实例对象访问都发生了改变。

@staticmethod

静态方法,需要通过修饰器@staticmethod来进行修饰,静态方法不需要多定义参数

1
2
3
4
5
6
7
8
9
10
class People(object):
country = 'china'

@staticmethod
#静态方法
def getCountry():
return People.country


print People.getCountry()

总结

类方法的第一个参数是类对象cls,那么通过cls引用的必定是类对象的属性和方法。

实例方法的第一个参数是实例对象self,那么通过self引用的可能是类属性、也有可能是实例属性(这个需要具体分析),不过在存在相同名称的类属性和实例属性的情况下,实例属性优先级更高。

静态方法中不需要额外定义参数,因此在静态方法中引用类属性的话,必须通过类对象来引用。