我是靠谱客的博主 感性金毛,最近开发中收集的这篇文章主要介绍python中属于私有属性的是_Python类中私有属性,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

'''私有属性

说明:

1.私有属性不能在外面通过实例调用

2.只能够在类里面自己来调用

3.私有属性对外面是隐藏的'''

classAnimal(object):

hobbie= "meat"

def __init__(self,name):

self.name=name

self.__num =None

@propertydeftotal_players(self):print(self.__num)

@total_players.setterdeftotal_players(self,num):

self.__num =numprint("total players:",self.__num)

d= Animal("Eric")print(d.total_players) #None

d.total_players = 4

print(d.total_players) #total players: 4

d.__num = 9 #这样赋值(不会给类里面的__num私有变量赋值),只是在d对象中重新创建了一个__num属性,值等于9

print(d.__num) #9

#其实用(_类名__属性名)还是能调用私有属性

print("OUT:",d._Animal__num) #OUT: 4

最后

以上就是感性金毛为你收集整理的python中属于私有属性的是_Python类中私有属性的全部内容,希望文章能够帮你解决python中属于私有属性的是_Python类中私有属性所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(65)

评论列表共有 0 条评论

立即
投稿
返回
顶部