由于在Python中不支持private这样的私有化修饰符,所以如果想把一个类属性置为私有的话,方法就是在属性名前加上双下划线__,这样在编译后,就可以起到保护私有属性的作用
例如:
假如有个类Numstr有一个self.num属性 在加上双下划线后变成self.__num后,经过编译就形成了self.__Numstr__num了,可以有效的保护私有属性,
但并非无懈可击,这只能算是一种保护机制
同时在Python中提供了限制用户创建并未在类中定义的属性,方法是在类的定义后跟一个__slots__属性,它是一个元组,包括了当前能访问到的属性。例如:
class test(object): __slots__=('foo'); foo=1.3; a=test(); print a.foo; a.bar=15 print a.bar; 输出:
1.3 Traceback (most recent call last): File "D:\pythonEclipse\PythonStudy\src\Unit13\TestSlots.py", line 7, in <module> a.bar=15 AttributeError: 'test' object has no attribute 'bar'