Python中的单下划线和双下划线使用场景详解


Posted in Python onSeptember 09, 2019

单下划线

单下划线用作变量

最常见的一种使用场景是作为变量占位符,使用场景明显可以减少代码中多余变量的使用。为了方便理解,_可以看作被丢弃的变量名称,这样做可以让阅读你代码的人知道,这是个不会被使用的变量,e.g.。

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

在交互解释器比如iPython中,_变量指向交互解释器中最后一次执行语句的返回结果。

单下划线前缀名称(例如_pythonPoint)

  • 这表示这是一个保护成员(属性或者方法),只有类对象和子类对象自己能访问到这些变量,是用来指定私有变量和方法的一种方式(约定而已)。如果使用from a_module import *导入时,这部分变量和函数不会被导入。不过值得注意的是,如果使用import a_module这样导入模块,仍然可以用a_module._pythonPoint这样的形式访问到这样的对象。
  • 另外单下划线开头还有一种一般不会用到的情况,例如使用一个C编写的扩展库有时会用下划线开头命名,然后使用一个去掉下划线的Python模块进行包装。如struct这个模块实际上是C模块_struct的一个Python包装。

单下划线后缀名称

通常用于和Python关键词区分开来,比如我们需要一个变量叫做class,但class是Python的关键词,就可以以单下划线结尾写作class_

双下划线

双下划线前缀名称

这表示这是一个私有成员(属性或者方法)。它无法直接像公有成员一样随便访问。双下划线开头的命名形式在Python的类成员中使用表示名字改编,即如果Test类里有一成员__x,那么dir(Test)时会看到_Test__x而非__x。这是为了避免该成员的名称与子类中的名称冲突,方便父类和子类中该成员的区分识别。但要注意这要求该名称末尾最多有一个下划线。e.g.

Python中的单下划线和双下划线使用场景详解

双下划线前缀及后缀名称

一种约定,Python内部的名字,用来区别其他用户自定义的命名,以防冲突。是一些Python的“魔术”对象,表示这是一个特殊成员。如类成员的__init____del____add__等,以及全局的__file____name__等。Python官方推荐永远不要将这样的命名方式应用于自己的变量或函数,而是按照文档说明来使用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.

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python读取ini文件、操作mysql、发送邮件实例
Jan 01 Python
Python实现Linux中的du命令
Jun 12 Python
Python如何调用JS文件中的函数
Aug 16 Python
Python中的相关分析correlation analysis的实现
Aug 29 Python
PYTHON实现SIGN签名的过程解析
Oct 28 Python
浅谈python print(xx, flush = True) 全网最清晰的解释
Feb 21 Python
Python Django搭建网站流程图解
Jun 13 Python
Tensorflow之MNIST CNN实现并保存、加载模型
Jun 17 Python
python与pycharm有何区别
Jul 01 Python
PyCharm+PyQt5+QtDesigner配置详解
Aug 12 Python
python 中关于pycharm选择运行环境的问题
Oct 31 Python
Python中itertools库的四个函数介绍
Apr 06 Python
python 批量修改 labelImg 生成的xml文件的方法
Sep 09 #Python
Python定时发送天气预报邮件代码实例
Sep 09 #Python
python英语单词测试小程序代码实例
Sep 09 #Python
Python实现TCP通信的示例代码
Sep 09 #Python
Python3使用PySynth制作音乐的方法
Sep 09 #Python
python智联招聘爬虫并导入到excel代码实例
Sep 09 #Python
python 的 openpyxl模块 读取 Excel文件的方法
Sep 09 #Python
You might like
一个数据采集类
2007/02/14 PHP
php中定义网站根目录的常用方法
2010/08/08 PHP
php去除换行符的方法小结(PHP_EOL变量的使用)
2013/02/16 PHP
浅析echo(),print(),print_r(),return之间的区别
2013/11/27 PHP
PHP的Yii框架中创建视图和渲染视图的方法详解
2016/03/29 PHP
php下载文件超时时间的设置方法
2016/10/06 PHP
php 解决扫描二维码下载跳转问题
2017/01/13 PHP
Mootools 1.2教程 Tooltips
2009/09/15 Javascript
javascript来定义类的规范小结
2010/11/19 Javascript
js防止DIV布局滚动时闪动的解决方法
2014/10/30 Javascript
JavaScript实现数组随机排序的方法
2015/06/26 Javascript
javascript基础知识之html5轮播图实例讲解(44)
2017/02/17 Javascript
JS实现页面打印功能
2017/03/16 Javascript
React中ES5与ES6写法的区别总结
2017/04/21 Javascript
基于vue.js无缝滚动效果
2018/01/25 Javascript
Vue.extend实现挂载到实例上的方法
2019/05/01 Javascript
[27:39]Ti4 循环赛第二日 LGD vs Fnatic
2014/07/11 DOTA
Python 时间处理datetime实例
2008/09/06 Python
Python实现的数据结构与算法之双端队列详解
2015/04/22 Python
彻底理解Python list切片原理
2017/10/27 Python
Python构建网页爬虫原理分析
2017/12/19 Python
pandas的唯一值、值计数以及成员资格的示例
2018/07/25 Python
Python3对称加密算法AES、DES3实例详解
2018/12/06 Python
Python 保存矩阵为Excel的实现方法
2019/01/28 Python
Python API自动化框架总结
2019/11/12 Python
pytorch之inception_v3的实现案例
2020/01/06 Python
python_matplotlib改变横坐标和纵坐标上的刻度(ticks)方式
2020/05/16 Python
缓解脚、腿和背部疼痛:Z-CoiL鞋
2019/03/12 全球购物
几个常见的消息中间件(MOM)
2014/01/08 面试题
《小松树和大松树》教学反思
2014/02/20 职场文书
资源工程专业毕业生求职信
2014/02/27 职场文书
2015年公司新年寄语
2014/12/08 职场文书
亮剑观后感
2015/06/05 职场文书
工商行政处罚决定书
2015/06/24 职场文书
2016教师六五普法学习心得体会
2016/01/21 职场文书
会议主持词通用版
2019/04/02 职场文书