Python __call__ 方法

這篇博文比較簡單,就不分那麼多的層次。 實現了__call__方法的對象,至關於重載了(),能夠實現調用功能。 egpython class A(): def __call__(self,name): print("%s is running!" % name) >>> a = A() >>> a("people") people is running! 首先,咱們建立了A
相關文章
相關標籤/搜索