1. 程式人生 > >python中self和cls的區別

python中self和cls的區別

1、self表示一個具體的例項本身。如果用了staticmethod,那麼就可以無視這個self,將這個方法當成一個普通的函式使用。

2、cls表示這個類本身

 1 >>> class A(object):
 2         def foo1(self):
 3             print "Hello",self
 4         @staticmethod
 5         def foo2():
 6             print "hello"
 7         @classmethod
 8         def foo3(cls):
9 print "hello",cls 10 11 12 >>> a = A() 13 14 >>> a.foo1() #最常見的呼叫方式,但與下面的方式相同 15 Hello <__main__.A object at 0x9f6abec> 16 17 >>> A.foo1(a) #這裡傳入例項a,相當於普通方法的self 18 Hello <__main__.A object at 0x9f6abec> 19 20 >>> A.foo2() #
這裡,由於靜態方法沒有引數,故可以不傳東西 21 hello 22 23 >>> A.foo3() #這裡,由於是類方法,因此,它的第一個引數為類本身。 24 hello <class '__main__.A'> 25 26 >>> A #可以看到,直接輸入A,與上面那種呼叫返回同樣的資訊。 27 <class '__main__.A'>