python中 __call__ 的應用
概要
Python中,如果在建立class的時候寫了call()方法, 那麼該class例項化出例項後, 例項名()就是呼叫call()方法。
例子
class Animal(object):
__call__(self, words):
print "Hello: ", words
if __name__ == "__main__":
cat = Animal()
cat("I am cat!")
>>> Hello: I am cat!
相關文章
- python中的__call__Python
- python中的__init__ 、__new__、__call__小結Python
- 簡述Python類中的 __init__、__new__、__call__ 方法Python
- Python中的__new__、__init__、__call__三個特殊方法Python
- redis在python中的應用RedisPython
- 類中的__init__()和__call__()函式函式
- __call__
- Python類中__del__()、__call__()、__repr__()、__new__()、__hash__()方法Python
- 邊框檢測在 Python 中的應用Python
- python的應用Python
- Python中的numba的基本應用!讓你的Python快一萬倍!Python
- Python中lambda表示式的語法與應用Python
- 詳解Python中sys模組的功能與應用Python
- 《探索Python Requests中的代理應用與實踐》Python
- python中多執行緒和多程序的應用Python執行緒
- python中list列表的高階應用 高階函式Python函式
- Python的學習(八)----py指令碼中呼叫應用程式Python指令碼
- 2.3 應用程式容器中的應用程式概述
- JavaScript中AOP的應用JavaScript
- unix中dmesg的應用
- WORD中域的應用
- Python的sorted函式應用Python函式
- Refs 在React中的應用React
- MQTT 在 Elixir 中的應用MQQT
- Js中Currying的應用JS
- HMM在NLP中的應用HMM
- SSD在SQLServer中的應用SQLServer
- action中json的應用JSON
- HugePage在mysql中的應用MySql
- HugePage在oracle中的應用Oracle
- SQL 中的統計應用SQL
- sar 在unix中的應用
- php當中的memcache應用PHP
- PLC程式中的配方應用C程式
- python 裝飾器在介面自動化測試中的應用Python
- python裝飾器在介面自動化測試中的應用Python
- 最令人頭疼的Python問題:Python多執行緒在爬蟲中的應用Python執行緒爬蟲
- python裝飾器decorator的應用Python