cls 和 staticmethod classmethod
Posted swinbetter
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cls 和 staticmethod classmethod相关的知识,希望对你有一定的参考价值。
1、@staticmethod,那么就可以无视这个self,而将这个方法当成一个普通的函数使用
2、@classmethod ,那么cls表示类本身
class A(object):
def foo1(self):
print "Hello",self
@staticmethod
def foo2():
print "hello"
@classmethod
def foo3(cls):
print "hello",cls
>>> a = A()
>>> a.foo1() #最常见的调用方式,但与下面的方式相同
Hello <__main__.A object at 0x9f6abec>
>>> A.foo1(a) #这里传入实例a,相当于普通方法的self
Hello <__main__.A object at 0x9f6abec>
>>> A.foo2() #这里,由于静态方法没有参数,故可以不传东西
hello
>>> A.foo3() #这里,由于是类方法,因此,它的第一个参数为类本身。
hello <class ‘__main__.A‘>
>>> A #可以看到,直接输入A,与上面那种调用返回同样的信息。
<class ‘__main__.A‘>
以上是关于cls 和 staticmethod classmethod的主要内容,如果未能解决你的问题,请参考以下文章
Python 中的 classmethod 和 staticmethod 有啥具体用途
python的@classmethod和@staticmethod的区别和使用
面对对象之@classmethod@staticmethod用法