放炮子
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,我们在外⾯也能够访问该“私有”变量了,
这⼀点在调试中是⽐较有⽤的!