Python可以通过类名重整访问私有变量
Posted Channing Lewis
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python可以通过类名重整访问私有变量相关的知识,希望对你有一定的参考价值。
class Circle():
def __init__(self, radius):
self.__radius = radius
c = Circle(5)
print(c._Circle__radius)
输出:
5
将私有变量名前加上“_类名”即可。
以上是关于Python可以通过类名重整访问私有变量的主要内容,如果未能解决你的问题,请参考以下文章