Python方法間調用,self.方法跟cls=類名;cls.方法,二種方式有什麼區別?
我看到tornado有個聊天室的demo,類MessageMixin的方法間調用使用了cls=類;cls.方法的方式,自己改成self.方法似乎跟之前的調用方式沒有區別,不知道這兩種方式是不是有什麼深層的不同?
我寫過的一篇文章什麼是method?
function就是可以通過名字可以調用的一段代碼,我們可以傳參數進去,得到返回值。所有的參數都是明確的傳遞過去的。
method是function與對象的結合。我們調用一個方法的時候,有些參數是隱含的傳遞過去的。下文會詳細介紹。
instancemethodIn [5]: class Human(object):
...: def __init__(self, weight):
...: self.weight = weight
...: def get_weight(self):
...: return self.weight
...:
In [6]: Human.get_weight 這告訴我們get_weight是一個沒有被綁定方法,什麼叫做未綁定呢?繼續看下去。 TypeError: unbound method get_weight() must be called with Human instance as first argument (got nothing instead) 未綁定的方法必須使用一個Human實例作為第一個參數來調用啊。那我們來試試 果然成功了,但是一般情況下我們習慣這麼使用。
Out[6]: &
In [7]: Human.get_weight()
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
/home/yao/learn/insight_python/&
----&> 1 Human.get_weight()
In [10]: Human.get_weight(Human(45))
Out[10]: 45
In [11]: person = Human(45)
In [12]: person.get_weight()
Out[12]: 45
這兩種方式的結果一模一樣。我們看下官方文檔是怎麼解釋這種現象的。
When an instance attribute is referenced that isn』t a data attribute, its class is searched.
If the name denotes a valid class attribute that is a function object, a method object is
created by packing (pointers to) the instance object and the function object just found together
in an abstract object: this is the method object. When the method object is called with an
argument list, a new argument list is constructed from the instance object and the argument list,
and the function object is called with this new argument list.
原來我們常用的調用方法(person.get_weight())是把調用的實例隱藏的作為一個參數self傳遞過去了, self 只是一個普通的參數名稱,不是關鍵字。
In [13]: person.get_weight
Out[13]: &
In [14]: person
Out[14]: &<__main__.Human at 0x8e13bec&>
我們看到get_weight被綁定在了 person 這個實例對象上。
總結下- instance method 就是實例對象與函數的結合。
- 使用類調用,第一個參數明確的傳遞過去一個實例。
- 使用實例調用,調用的實例被作為第一個參數被隱含的傳遞過去。
classmethod
In [1]: class Human(object):
...: weight = 12
...: @classmethod
...: def get_weight(cls):
...: return cls.weight
In [2]: Human.get_weight 我們看到get_weight是一個綁定在 Human 這個類上的method。調用下看看
Out[2]: &
In [3]: Human.get_weight()
Out[3]: 12
In [4]: Human().get_weight()
Out[4]: 12
類和類的實例都能調用 get_weight 而且調用結果完全一樣。
我們看到 weight 是屬於 Human 類的屬性,當然也是 Human 的實例的屬性。那傳遞過去的參數 cls 是類還是實例呢?In [1]: class Human(object):
...: weight = 12
...: @classmethod
...: def get_weight(cls):
...: print cls
In [2]: Human.get_weight()
&
In [3]: Human().get_weight() 我們看到傳遞過去的都是 Human 類,不是 Human 的實例,兩種方式調用的結果沒有任何區別。cls 只是一個普通的函數參數,調用時被隱含的傳遞過去。
&
- classmethod 是類對象與函數的結合。
- 可以使用和類的實例調用,但是都是將類作為隱含參數傳遞過去。
- 使用類來調用 classmethod 可以避免將類實例化的開銷。
staticmethod
In [1]: class Human(object):
...: @staticmethod
...: def add(a, b):
...: return a + b
...: def get_weight(self):
...: return self.add(1, 2)
In [2]: Human.add
Out[2]: &
In [3]: Human().add
Out[3]: &
In [4]: Human.add(1, 2)
Out[4]: 3
In [5]: Human().add(1, 2)
Out[5]: 3
我們看到 add 在無論是類還是實例上都只是一個普通的函數,並沒有綁定在任何一個特定的類或者實例上。可以使用類或者類的實例調用,並且沒有任何隱含參數的傳入。
In [6]: Human().add is Human().add
Out[6]: True
In [7]: Human().get_weight is Human().get_weight
Out[7]: False
add 在兩個實例上也是同一個對象。instancemethod 就不一樣了,每次都會創建一個新的 get_weight 對象。
總結下- 當一個函數邏輯上屬於一個類又不依賴與類的屬性的時候,可以使用staticmethod。
- 使用 staticmethod 可以避免每次使用的時都會創建一個對象的開銷。
- staticmethod 可以使用類和類的實例調用。但是不依賴於類和類的實例的狀態。
參考資料
http://julien.danjou.info/blog/2013/guide-python-static-class-abstract-methods
Python @classmethod and @staticmethod for beginner?https://groups.google.com/forum/?hl=zh-CN#!topic/python-cn/pD2mKUja_lk
What is the difference between a method and a function假設有類c,且o是類c的對象,那麼雖然執行過程上有點細微差別,但從結果上說,o.method(arg, ...) 等價於 c.method(o, arg, ...)
實際上self是一個準關鍵字,並不是默認第一個參數.嘗試如下兩段代碼,你會發現,不論self參數的位置在哪,都是作為instance參數的
class MethodTest(object):
def test(self, name):
self.name = name
print self.name
class MethodTest2(object):
def test2(name, self):
self.name = name
print self.name
t1 = MethodTest()
t1.test("aaa")
t2 = MethodTest2()
t2.test("bbb")
你會發現都沒有問題。
--------------------------------------------------------------------------------------之前測試沒有問題,但是後來重新測試發現會報錯:AttributeError: str object has no attribute name所以self的位置還是有影響的。推薦閱讀:
※Python中模塊變數__path__在這段代碼中怎麼傳進來的?
※Python socket 遇到錯誤 [Errno 10060] ?
※Flask框架怎麼樣,比起Web.py有哪些不同?
※Tornado 非同步讀寫文件的方法?
※學完python之後去看《flask web開發-基於python的web應用開發實戰》為什麼看不懂?