一、成员修饰符
1.方法名带下划线例 __name() 即属性私有化,就表明该函数不可以通过对象或者类调用(简称外部调用),只能通过类的内部其他方法间接的调用。
2.类中的静态字段、普通字段、静态方法、普通方法、类方法,都适用。
3.儿子孙子继承者也不能访问。
class Foo: __xo = "xo" def __init__(self,name,age): __dog = "cat" self.n = name self.a = age def f1(self): print(Foo.__xo) # 要通过类的调用 obj = Foo("xxx",18) obj.f1() #xo Foo.__xo #AttributeError: type object ‘Foo‘ has no attribute ‘__xo‘
时间: 2024-10-06 04:17:56