Python:为什么类中的私有属性可以在外部赋值并访问?
问题引入
在慕课网上学习Python**类中的私有属性**的时候,看到了一个同学的提问:
将count改为__count,为什么实例变量在外部仍然可以修改__count?这里print p1.__count可以打印出100
class Person(object): __count = 0 def __init__(self, name): Person.__count = Person.__count + 1 self.name = name print Person.__count p1 = Person('Bob') p1.__count=100 print p1.__count p2 = Person('Alice') print Person.__count
问题解决:
单刀直入版:
这是因为给p1.__count赋值的操作,其实是在p1中定义了一个名为__count的变量(因为Python中的都是动态变量),而没有改变类中真正的属性。
太长但还是要看看版:
知识点清单:
1、类的“伪私有属性”
2、在类的外部动态地创建类属性
问题解决过程:
1、“伪私有属性”的概念:
python的类中通过加双下划线来设置的“私有属性”其实是“伪私有属性”,原理是python编译器将加了双下划线的“属性名”自动转换成“类名属性名”。所以我们在外部用“属性名”访问私有属性的时候,会触发AttributeError,从而实现“私有属性”的特性。但通过“类名属性名”也可以访问这些属性。
参考:http://www.pythonclub.org/python-class/private
2、编写测试代码:
以下是在该同学的代码的基础上修改的测试代码:
class Person(object): #设置类属性 __count_of_class = 'original count_of_class' def __init__(self, name): self.name = name print('in class Person : count_of_class = ', Person.__count_of_class,'\n') #初始化实例p1 p1 = Person('Bob') #在实例p1上修改属性值 p1.__count_of_class='I\'m not the original count_of_class!' print('p1\'s _Person__count_of_class = ',p1._Person__count_of_class) print('p1\'s __count_of_class = ',p1.__count_of_class,'\n') #在类Person上修改属性值 Person.__count_of_class = 'I\'m not the original count_of_class!' #将这句注释取消掉,会发现真正的私有属性的值也改变了 #Person._Person__count_of_class = 'I\'m not the original count_of_class!' print('Person\'s _Person__count_of_class = ',Person._Person__count_of_class) print('Person\'s __count_of_class = ',Person.__count_of_class)
分别在实例p1上和类Person上进行操作,并且分别打印出“__属性名”,以及“_类名__属性名”。
输出结果如下:
in class Person : count_of_class = original count_of_class p1's _Person__count_of_class = original count_of_class p1's __count_of_class = I'm not the original count_of_class! Person's _Person__count_of_class = original count_of_class Person's __count_of_class = I'm not the original count_of_class!
**由此可见,虽然用p1.__count_of_class给它赋值了,但其实在类中真正的属性_Person__count_of_class的原始值是没有改变的。
但是如果将p1._Person__count_of_class赋值,那么类属性定义的原始值就真正地被覆盖了**
""" 取消掉 ##Person._Person__count_of_class = 'I\'m not the original count_of_class!' 的注释,输出结果: """ in class Person : count_of_class = original count_of_class p1's _Person__count_of_class = original count_of_class p1's __count_of_class = I'm not the original count_of_class! #注意这一句: Person's _Person__count_of_class = I'm not the original count_of_class! Person's __count_of_class = I'm not the original count_of_class!
由此,我们知道了:_count_of_class和_Person_count_of_class不是同一个东西。
最后的问题
但是呢,如果不先给p1.__count_of_class赋值,直接打印它又会触发AttributeError,这是为什么?
这是因为给p1.__count_of_class赋值的操作,其实是在p1中定义了一个名为__count_of_class的变量(因为Python中的都是动态变量)。
以下实例说明可以通过外部赋值来为类创造属性:
class Person(object): pass p1=Person() #给p1创建属性new_of_instance p1.new_of_instance = 'I\'m new in p1!' print(p1.new_of_instance) #给Person类创建属性new_of_class Person.new_of_class = 'I\'m new in Person!' #在类中新加的属性,可以通过实例来访问 print(p1.new_of_class) >输出: I'm new in p1! I'm new in Person!
问题解决。
以上这篇谈谈Python:为什么类中的私有属性可以在外部赋值并访问就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
- lol全球总决赛lck一号种子是谁 S14全球总决赛lck一号种子队伍
- BradMehldau-ApresFaure(2024)[24-96]FLAC
- IlCannone-FrancescaDegoPlaysPaganinisViolin(2021)[24-96]FLAC
- Tchaikovsky,Babajanian-PianoTrios-Gluzman,Moser,Sudbin[FLAC+CUE]
- 费玉清.1987-费玉清十周年旧曲情怀4CD【东尼】【WAV+CUE】
- 群星.2024-春花焰电视剧影视原声带【TME】【FLAC分轨】
- 方力申.2008-我的最爱新曲+精丫金牌大风】【WAV+CUE】
- 群星 《2024好听新歌35》十倍音质 U盘音乐 [WAV分轨][1.1G]
- 群星《烧透你的耳朵1》DXD金佰利 [低速原抓WAV+CUE][1.2G]
- 莫文蔚《超级金曲精选2CD》SONY [WAV+CUE][1.6G]
- 【RR】加尼克奥尔森GarrickOhlsso《贝多芬钢琴协奏曲全集》原声母带WAV
- 彭芳《纯色角1》[WAV+CUE]
- 李蔓《山顶的月亮—李蔓动态情歌》
- 梁咏琪.1999-新鲜【EEI】【WAV+CUE】
- 张琍敏.1979-悲之秋【海山】【FLAC分轨】