在python语言中定义私有成员变量的方法是_Python中定义“私有”成员变量和成员函数...

本文探讨了Python中如何通过下划线标记私有变量的传统做法,以及`name mangling`如何隐藏这些变量。讲解了如何虽然看似可以访问,但实际上限制了外部对私有变量的访问,并通过示例展示了这一机制的工作原理。
摘要由CSDN通过智能技术生成

在学习Python的过程中发下,它把类(class)中所有的成员函数和成员变量都看做是"Public"的,作为C++出身的程序员们可能就不习惯了。

Python的官方教程中如是说:““Private” instance variables that cannot be accessed 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,

whereclassnameis

the current class name with leading underscore(s) stripped.”,意思就是说,Python会在类的内部自动的把你定义的__spam变量的名字替换成为 _classname__spam(注意,classname前面是一个下划线,spam前是两个下划线),Python把这种技术叫做“name mangling”。因此,用户在外部访问__spam的时候就会提示找不到相应的变量。

下面给出一段简单的代码:

#!/usr/bin/python

#Filename: classPrivate.py

class testPrivate:

def __init__(self):

self.__data = []

def add(self,item):

self.__data.append(item)

def printData(self):

print (self.__data)

t = testPrivate()

t.add('dancingrain')

t.add('hello')

t.printData()

print(t.__data)

输出结果是:

Center

3405203.html

可以看出,当执行print(t.__data)的时候提示我们没有该属性,OK!这就是我们想要的结果。

但是,这并不是意味着我们真的就不能够从外部访问这个变量了,上面说Python在类的内部用_classname__spam替换了__spam,

因此,我们可以在类的外面使用_classname__spam来访问__spam。看看下面的代码:

#!/usr/bin/python

#Filename: classPrivate.py

class testPrivate:

def __init__(self):

self.__data = []

def add(self,item):

self.__data.append(item)

def printData(self):

print (self.__data)

t = testPrivate()

t.add('dancingrain')

t.add('hello')

t.printData()

print(t._testPrivate__data)

结果是:

Center

3405203.html

OK,我们在外面也能够访问该“私有”变量了,

这一点在调试中是比较有用的!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值