Python中的staticmethod和classmethod

來源:互聯網
上載者:User

標籤:


在python中,靜態方法和類方法都是可以通過類對象和類對象執行個體訪問。但是區別是:


    • @classmethod 是一個函數修飾符,它表示接下來的是一個類方法,而對於平常我們見到的則叫做執行個體方法。 類方法的第一個參數cls,而執行個體方法的第一個參數是self,表示該類的一個執行個體。
    • 普通對象方法至少需要一個self參數,代表類對象執行個體
    • 類方法有類變數cls傳入,從而可以用cls做一些相關的處理。並且有子類繼承時,調用該類方法時,傳入的類變數cls是子類,而非父類。 對於類方法,可以通過類來調用,就像C.f(),有點類似C++中的靜態方法, 也可以通過類的一個執行個體來調用,就像C().f(),這裡C(),寫成這樣之後它就是類的一個執行個體了。
    • 靜態方法則沒有,它基本上跟一個全域函數相同,一般來說用的很少


class MethodTest(): var1 = "class var" def __init__(self, var2 = "object var"): self.var2 = var2 @staticmethod def staticFun(): print ‘static method‘ @classmethod def classFun(cls): print ‘class method‘ staticmethod和classmethod的相同點:1.都可以通過類或執行個體調用mt = MethodTest()MethodTest.staticFun()mt.staticFun()MethodTest.classFun()mt.classFun()2.都無法訪問執行個體成員 @staticmethod def staticFun(): print var2 //wrong @classmethod def classFun(cls): print var2 //wrong staticmethod和classmethod的區別:1.staticmethod無需參數,classmethod需要類變數作為參數傳遞(不是類的執行個體) def classFun(cls): print ‘class method‘ //cls作為類變數傳遞2.classmethod可以訪問類成員,staticmethod則不可以 @staticmethod def staticFun(): print var1 //wrong @classmethod def classFun(cls): print cls.var1 //right

 

Python中的staticmethod和classmethod

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.