python_100_days
Day01-15
访问类的私有属性或者私有方法:实例类.类名_变量名
07.md
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| class Test:
def __init__(self, foo): self.__foo = foo
def __bar(self): print(self.__foo) print('__bar')
def main(): test = Test('hello') test._Test__bar() print(test._Test__foo)
if __name__ == "__main__": main()
|
09.md