最佳答案
我知道,在 Python 中没有“真正的”私有/保护方法。这种方法并不意味着要隐藏任何东西; 我只是想了解 Python 是做什么的。
class Parent(object):
def _protected(self):
pass
def __private(self):
pass
class Child(Parent):
def foo(self):
self._protected() # This works
def bar(self):
self.__private() # This doesn't work, I get a AttributeError:
# 'Child' object has no attribute '_Child__private'
那么,这种行为是否意味着“受保护的”方法将被继承,而“私有的”方法根本不会被继承?
还是我错过了什么?