Python中__init__的用法和理解
在Python中定義類經常會用到__init__函式(方法),首先需要理解的是,兩個下劃線開頭的函式是宣告該屬性為私有,不能在類的外部被使用或訪問。而__init__函式(方法)支援帶引數類的初始化,也可為宣告該類的屬性(類中的變數)。__init__函式(方法)的第一個引數必須為self,後續引數為自己定義。
從文字理解比較困難,通過下面的例子能非常容易理解這個概念:
例如我們定義一個Box類,有width, height, depth三個屬性,以及計算體積的方法:
#!/usr/bin/python
# -*- coding utf-8 -*-
#Created by Lu Zhan
class Box:
def setDimension(self, width, height, depth):
self.width = width
self.height = height
self.depth = depth
def getVolume(self):
return self.width * self.height * self.depth
b = Box()
b.setDimension(10, 20, 30)
print(b.getVolume())
我們在Box類中定義了setDimension方法去設定該Box的屬性,這樣過於繁瑣,而用__init__()這個特殊的方法就可以方便地自己對類的屬性進行定義,__init__()方法又被稱為構造器(constructor)。
#!/usr/bin/python
# -*- coding utf-8 -*-
#Created by Lu Zhan
class Box:
#def setDimension(self, width, height, depth):
# self.width = width
# self.height = height
# self.depth = depth
def __init__(self, width, height, depth):
self.width = width
self.height = height
self.depth = depth
def getVolume(self):
return self.width * self.height * self.depth
b = Box(10, 20, 30)
print(b.getVolume())
相關文章
- Python中__init__的理解Python
- Python面試之理解__new__和__init__的區別Python面試
- python中__init__ 和__new__的對比Python
- 詳解Python中的__init__和__new__Python
- python類中super()和__init__()的區別Python
- python中的“__init__”函式Python函式
- (學習筆記)python 對__init__的初步理解筆記Python
- Python__new__和__init__Python
- Python中__new__和__init__的區別與聯絡Python
- python的__init__()Python
- Python中__init__方法注意點Python
- Python __new__ 和 __init__ 的區別Python
- 詳細解讀Python中的__init__()方法Python
- Python中的__init__()方法整理中(兩種解釋)Python
- 類中的__init__()和__call__()函式函式
- python2中的__new__與__init__,新式類和經典類Python
- python中的__init__ 、__new__、__call__小結Python
- Python中的__init__到底是幹什麼的?Python
- Python 中的 super(類名, self).__init__() 的含義Python
- 一問搞懂python的__init__和__new__方法Python
- python中sorted()和list.sort()的用法Python
- Python 中__init__函式以及引數selfPython函式
- python中return的用法Python
- python中的eval用法Python
- Python中set的用法Python
- Promise && async/await的理解和用法PromiseAI
- 簡述Python類中的 __init__、__new__、__call__ 方法Python
- Python中的__new__、__init__、__call__三個特殊方法Python
- 深入理解python中的類和物件Python物件
- Python 中的引用和類屬性的理解Python
- Python中裝飾器的基本概念和用法Python
- Python3中*和**運算子的用法詳解!Python
- Python中那些簡單又好用的特性和用法Python
- Python中return self的用法Python
- Python 中 Requests 庫的用法Python
- Python中operator 模組的用法Python
- Python中itertools 模組的用法Python
- Python中關於++和—(自增和自減)的理解Python