python如何解析类中的私有(双下划线)方法?
作者:互联网
考虑以下课程
class Foo(object):
@staticmethod
def __is():
print('__is')
def m(self):
Foo.__is() # executes
Foo.__is() # fails because of mangling
print(Foo.__dict__.keys())
Foo .__是(),当它在定义类后运行时,由于名称大错而失败. python解释器如何解决Foo .__是()在方法内部而不是在类之外?
解决方法:
在类中以__开头的名称的名称修改是通过将此名称重写为仅在类中的受损形式来实现的.所以你的Foo .__在类中被_Foo__is取代,现在__dict__类中存在.该属性可以在类内部或外部访问,因此没有私有保护.但是在替换之后,__ is的名字在任何地方都不存在(我认为),这就是为什么它不能从外部起作用的原因.
从Python帮助:
“__*”
Class-private names. Names in this category, when used within the
context of a class definition, are re-written to use a mangled form
to help avoid name clashes between “private” attributes of base and
derived classes. See section Identifiers (Names).
另请参阅我对您的代码段中的错误的评论.
标签:python,python-internals,cpython,private-methods 来源: https://codeday.me/bug/20190710/1424397.html