python例項方法中self的作用
說明
1、無論是建立類的構造方法還是例項方法,最少要包含一個引數self。
2、透過例項的self引數與物件進行繫結,程式在呼叫例項方法和構造方法時,也不需要手動為第一個引數傳值。
例項
class Chinese: country = 'China' def __init__(self, name, age): self.name = name self.age = age def talk(self): print(self, 'is talking Chinese') if __name__ == '__main__': DY = Chinese("DY", "18") DY.talk()
以上就是python例項方法中self的作用,希望對大家有所幫助。更多Python學習指路:
本文教程操作環境:windows7系統、Python 3.9.1,DELL G3電腦。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1795/viewspace-2829517/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python中time庫的例項使用方法Python
- 理解Python中的類物件、例項物件、屬性、方法Python物件
- Python中類方法和例項方法有什麼區別?Python
- Python 動態新增例項屬性,例項方法,類屬性,類方法Python
- Python中return self的用法Python
- php例項化物件的例項方法PHP物件
- Python中的if、while、for 語法及例項PythonWhile
- python中類的建立和例項化Python
- python變數中self的新增Python變數
- 初學Python過程中,例項方法和類方法的區別是什麼?Python
- python呼叫方法必須例項化麼Python
- 關於input 中 hidden屬性在後臺作用的例項
- python例項屬性的顯示方法-dir、__dict__Python
- 【Python】Python方法求水仙花數原碼例項Python
- python繼承和重寫init方法--例項Python繼承
- C#中的虛方法(virtual)例項講解C#
- 一個例項中,多個synchronized方法的呼叫synchronized
- java中String類常用方法的使用與例項Java
- python例項1Python
- python socket例項Python
- Python中compile函式的語法及例項!PythonCompile函式
- Python中replace()的用法是什麼?附例項!Python
- python使用ctypes呼叫擴充套件模組的例項方法Python套件
- PHP static 關鍵字和 self 關鍵字例項化的區別PHP
- Python - 物件導向程式設計 - 例項方法、靜態方法、類方法Python物件程式設計
- Vue作用域插槽 :slot-scope 例項Vue
- python鬧鐘例項Python
- python 類和例項Python
- python100例項Python
- Python例項集錦Python
- Python中類建立和例項化過程Python
- SAP UI5 應用中 MockServer 的例項化方法UIMockServer
- vue例項的屬性和方法Vue
- bean例項化的三種方法Bean
- [Python 基礎] Python 例項方法、靜態方法和類方法詳解 (包含區別和用法)Python
- 如何區分例項化網格中的每個例項
- Python基礎——切片例項Python
- Python 中的 super(類名, self).__init__() 的含義Python