Python高级语法-私有属性-名字重整(4.7.1)
作者:互联网
目录
@
1.说明
使用__dict__魔法方法
可以看到所有的属性,包括公有的,私有的,保护的等等
不能调用的原因就是,解释器把名字属性给重组了
其实是可以访问到的
2.代码
class hehe:
def __init__(self):
self.__name = 1#__代表私有
a = hehe()
print(a.__dict__)
print(a._hehe__name)
关于作者
个人博客网站
个人GitHub地址
个人公众号:
标签:__,4.7,Python,self,私有,dict,print,hehe 来源: https://www.cnblogs.com/simon-idea/p/11412089.html