python的__call__

來源:互聯網
上載者:User

有關python的__call__在官方文檔上有這麼一句解釋 (http://docs.python.org/reference/datamodel.html?highlight=__call__#object.__call__)

object.__call__(self[, args...])

Called when the instance is “called” as a function; if this method is defined, x(arg1, arg2, ...) is a shorthand for x.__call__(arg1, arg2, ...).

當把一個執行個體當作方法來調用的時候,形如instance(arg1,args2,...),那麼實際上調用的就是 instance.__call__(arg1,arg2,...)

先來一個直觀的:

In [5]: class A:   ...:     def __init__(self):   ...:         print "__init__ method"   ...:     def __call__(self):   ...:         print "__call__ method"   ...:In [6]: a = A()__init__ methodIn [7]: a()__call__ method

  

下面的這個可以忽略了。。。。。。

#coding:utf-8"""   Demo for __call__   http://docs.python.org/reference/datamodel.html?  highlight=__call__#object.__call__   當我們把一個類的執行個體當作方法來使用的時候,就會調用__call__方法"""class A:    def __init__(self, arg):        print "init"        self.arg = arg            def __call__(self):        print "a"        print self.arg        if __name__ =="__main__":    c = A("aaaaa")    c()#這個時候c僅僅是一個執行個體(instance),我們一般都是c.methodname(), 而現在在執行個體後面直接添加了(),就是把它當作一個方法來調用,這個時候就會調用c(arg1,arg2,....)就等價於 c.__call__(self,arg1,arg2,...)    

  

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.