Python中定义“私有”成员变量和成员函数

更新时间:2023-05-16 03:19:33 阅读: 评论:0

放炮子
kpi是什么Python中定义“私有”成员变量和成员函数手心有痣的女人
在学习Python 的过程中发下,它把类(class )中所有的成员函数和成员变量都看做是"Public"的,作为C++出⾝的程序员们可能就不习惯了。
特产大全
Python 的官⽅教程中如是说:““Private” instance variables that cannot be accesd except from inside an object don’t exist in Python.”。也就是说,在Python 中我们不能够像C++或者Java 那样有专门的private 和public 关键字来指定某些成员是公有的,哪些成员是私有的。
然⽽,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.”。
OK ,原来在Python 中⼤家都是通过在⼀个变量或者函数之前加上下划线来表⽰私有变量的,例如__spam(这⾥是两个下划线)就是私有的。同时,Python 为了保证不能再class 之外访问该变量,“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.”,意思就是说,Python 会在类的内部⾃动的把你定义的__spam 变量的名字替换
成为 _classname__spam(注意,classname 前⾯是⼀个下划线,spam 前是两个下划线),Python 把这种技术叫做
“name mangling”。因此,⽤户在外部访问__spam 的时候就会提⽰找不到相应的变量。
电动车品牌排行榜下⾯给出⼀段简单的代码:
诉讼费退费申请书>银行借款合同
输出结果是:
可以看出,当执⾏print(t.__data)的时候提⽰我们没有该属性,OK !这就是我们想要的结果。
但是,这并不是意味着我们真的就不能够从外部访问这个变量了,上⾯说Python在类的内部⽤_classname__spam替换了__spam,因此,我们可以在类的外⾯使⽤_classname__spam来访问__spam。看看下⾯的代码:
结果是:
蜡油
OK,我们在外⾯也能够访问该“私有”变量了,
这⼀点在调试中是⽐较有⽤的!

本文发布于:2023-05-16 03:19:33,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/648911.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:变量   成员   访问   函数   过程   没有   可能
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图