现在的位置: 首页 > 综合 > 正文

python 类私有成员

2018年02月01日 ⁄ 综合 ⁄ 共 493字 ⁄ 字号 评论关闭

Python中默认的成员函数,成员变量都是公开的(public),而且python中没有类似public,private等关键词来修饰成员函数,成员变量。

在python中定义私有变量只需要在变量名或函数名前加上 ”__“两个下划线,那么这个函数或变量就会为私有的了。、

'''
Created on 2012-7-24

@author: Administrator
'''
class Test:
    def test_1(self):
        print 'test_1 is ok....'
        
    def __test_2(self):
        print 'test_2 is ok...'

test = Test()
test.test_1()
test.__test_2()

运行结果:

test_1 is ok....
Traceback (most recent call last):
  File "D:\Install\Eclipse\WorkSpace\Python\test_class.py", line 15, in <module>
    test.__test_2()
AttributeError: Test instance has no attribute '__test_2'

【上篇】
【下篇】

抱歉!评论已关闭.