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__的初步理解筆記Python
- Python中__new__和__init__的區別與聯絡Python
- Python __new__ 和 __init__ 的區別Python
- Python中的__init__()方法整理中(兩種解釋)Python
- 一問搞懂python的__init__和__new__方法Python
- python中的__init__ 、__new__、__call__小結Python
- 類中的__init__()和__call__()函式函式
- Python 中的 super(類名, self).__init__() 的含義Python
- Promise && async/await的理解和用法PromiseAI
- Python中urllib和urllib2庫的用法Python
- Python 中__init__函式以及引數selfPython函式
- Python中if的基本用法Python
- python中return的用法Python
- python中的eval用法Python
- 簡述Python類中的 __init__、__new__、__call__ 方法Python
- 深入理解python中的類和物件Python物件
- Python中那些簡單又好用的特性和用法Python
- Python3中*和**運算子的用法詳解!Python
- Python中裝飾器的基本概念和用法Python
- Python中return self的用法Python
- 【譯】理解this及call,apply和bind的用法APP
- [轉載] Python中協程的詳細用法和例子Python
- Python中關於++和—(自增和自減)的理解Python
- Python中threading的join和setDaemon的區別及用法[例子]Pythonthread
- Python中lambda表示式的用法Python
- Python中operator 模組的用法Python
- Python中pathlib 模組的用法Python
- Python中itertools 模組的用法Python
- Python中paramiko 模組的用法Python
- python中zip()函式的用法Python函式
- 淺談python中的xpath用法Python
- Python中read()、readline()和readlines()三者間的區別和用法Python
- Python中的split()函式的用法Python函式
- Python中的selenium的簡單用法Python
- javascript中call()、apply()、bind()的用法終於理解JavaScriptAPP