溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中的單下劃線和雙下劃線使用場景詳解

發(fā)布時間:2020-09-07 07:18:10 來源:腳本之家 閱讀:171 作者:Mr汪 欄目:開發(fā)技術

單下劃線

單下劃線用作變量

最常見的一種使用場景是作為變量占位符,使用場景明顯可以減少代碼中多余變量的使用。為了方便理解,_可以看作被丟棄的變量名稱,這樣做可以讓閱讀你代碼的人知道,這是個不會被使用的變量,e.g.。

for _, _, filenames in os.walk(targetDir):
  print(filenames)
  
for _ in range(100):
  print('PythonPoint')

在交互解釋器比如iPython中,_變量指向交互解釋器中最后一次執(zhí)行語句的返回結果。

單下劃線前綴名稱(例如_pythonPoint)

  • 這表示這是一個保護成員(屬性或者方法),只有類對象和子類對象自己能訪問到這些變量,是用來指定私有變量和方法的一種方式(約定而已)。如果使用from a_module import *導入時,這部分變量和函數(shù)不會被導入。不過值得注意的是,如果使用import a_module這樣導入模塊,仍然可以用a_module._pythonPoint這樣的形式訪問到這樣的對象。
  • 另外單下劃線開頭還有一種一般不會用到的情況,例如使用一個C編寫的擴展庫有時會用下劃線開頭命名,然后使用一個去掉下劃線的Python模塊進行包裝。如struct這個模塊實際上是C模塊_struct的一個Python包裝。

單下劃線后綴名稱

通常用于和Python關鍵詞區(qū)分開來,比如我們需要一個變量叫做class,但class是Python的關鍵詞,就可以以單下劃線結尾寫作class_。

雙下劃線

雙下劃線前綴名稱

這表示這是一個私有成員(屬性或者方法)。它無法直接像公有成員一樣隨便訪問。雙下劃線開頭的命名形式在Python的類成員中使用表示名字改編,即如果Test類里有一成員__x,那么dir(Test)時會看到_Test__x而非__x。這是為了避免該成員的名稱與子類中的名稱沖突,方便父類和子類中該成員的區(qū)分識別。但要注意這要求該名稱末尾最多有一個下劃線。e.g.

Python中的單下劃線和雙下劃線使用場景詳解

雙下劃線前綴及后綴名稱

一種約定,Python內部的名字,用來區(qū)別其他用戶自定義的命名,以防沖突。是一些Python的“魔術”對象,表示這是一個特殊成員。如類成員的__init____del__、__add__等,以及全局的__file__、__name__等。Python官方推薦永遠不要將這樣的命名方式應用于自己的變量或函數(shù),而是按照文檔說明來使用Python內置的這些特殊成員。

Python中關于私有屬性、方法約定問題,官方文檔如下

“Private” instance variables that cannot be accessed except from inside an object don't exist in Python. However, there is a convention that is followed by most Python code: a name prefixed with an underscore (e.g. _spam) should be treated as a non-public part of the API (whether it is a function, a method or a data member). It should be considered an implementation detail and subject to change without notice.

Since there is a valid use-case for class-private members (namely to avoid name clashes of names with names defined by subclasses), there is limited support for such a mechanism, called name mangling. Any identifier of the form__spam (at least two leading underscores, at most one trailing underscore) is textually replaced with _classname__spam, where classname is the current class name with leading underscore(s) stripped. This mangling is done without regard to the syntactic position of the identifier, as long as it occurs within the definition of a class.

Name mangling is helpful for letting subclasses override methods without breaking intraclass method calls.

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI