在看一些Python開源代碼時,經(jīng)常會看到以下劃線或者雙下劃線開頭的方法或者屬性,到底它們有什么作用,又有什么樣的區(qū)別呢?今天我們來總結(jié)一下(注:下文中的代碼在Python3下測試通過)
_的含義
在python的類中沒有真正的私有屬性或方法,沒有真正的私有化。
但為了編程的需要,我們常常需要區(qū)分私有方法和共有方法以方便管理和調(diào)用。那么在Python中如何做呢?
一般Python約定加了下劃線_的屬性和方法為私有方法或?qū)傩?,以提示該屬性和方法不?yīng)在外部調(diào)用,也不會被fromModuleAimport*導(dǎo)入。如果真的調(diào)用了也不會出錯,但不符合規(guī)范。
下面的代碼演示加了_的方法,以及在類外面對其的可訪問性。
classTestA:
def_method(self):
print('Iamaprivatefunction.')
defmethod(self):
returnself._method()
ca=TestA()
ca.method()
輸出:
Iamaprivatefunction.
在類TestA中定義了一個_method方法,按照約定是不能在類外面直接調(diào)用它的,為了可以在外面使用_method方法,又定義了method方法,method方法調(diào)用_method方法。
但是我們應(yīng)該記住的是加了_的方法也可以在類外面調(diào)用:
ca._method()
輸出:
Iamaprivatefunction.
__的含義
Python中的__和一項稱為namemangling的技術(shù)有關(guān),namemangling(又叫namedecoration命名修飾).在很多現(xiàn)代編程語言中,這一技術(shù)用來解決需要唯一名稱而引起的問題,比如命名沖突/重載等.
Python中雙下劃線開頭,是為了不讓子類重寫該屬性方法.通過類的實例化時自動轉(zhuǎn)換,在類中的雙下劃線開頭的屬性方法前加上”_類名”實現(xiàn).
classTestA:
def__method(self):
print('ThisisamethodfromclassTestA')
defmethod(self):
returnself.__method()
classTestB(TestA):
def__method(self):
print('ThisisamethodfromcalssTestB')
ca=TestA()
cb=TestB()
ca.method()
cb.method()
輸出結(jié)果:
ThisisamethodfromclassTestA
ThisisamethodfromclassTestA
在類TestA中,__method方法其實由于namemangling技術(shù)的原因,自動轉(zhuǎn)換成了_TestA__method,所以在A中method方法返回的是_TestA__method,TestB作為TestA的子類,只重寫了__method方法,并沒有重寫method方法,所以調(diào)用B中的method方法時,調(diào)用的還是_TestA__method方法。
注意:在A中沒有__method方法,有的只是_A__method方法,也可以在外面直接調(diào)用,所以python中沒有真正的私有化
不能直接調(diào)用__method()方法,需要調(diào)用轉(zhuǎn)換之后的方法
ca.__method()
輸出:
Traceback(mostrecentcalllast):
File"",line1,inAttributeError:'TestA'objecthasnoattribute'__method'
轉(zhuǎn)換后的方法名為:_TestA__method
ca._TestA__method()
輸出:
ThisisamethodfromclassTestA
在TestB中重寫method方法:
classTestB(TestA):
def__method(self):
print('ThisisamethodfromcalssTestB')
defmethod(self):
returnself.__method()
cb=B()
cb.method()
輸出:
ThisisamethodfromcalssTestB
現(xiàn)在TestB中的method方法會調(diào)用_TestB__method方法:
總結(jié)
python中沒有真正的私有化,但是有一些和命名有關(guān)的約定,來讓編程人員處理一些需要私有化的情況。
以上內(nèi)容為大家介紹了Python3中_和__的用途和區(qū)別,希望對大家有所幫助,如果想要了解更多Python相關(guān)知識,請關(guān)注IT培訓(xùn)機構(gòu):千鋒教育。http://m.2667701.com/