python使用@property @x.setter @x.deleter

枫铃3年前 (2021-08-07)Python272

@property可以将python定义的函数“当做”属性访问,从而提供更加友好访问方式,但是有时候setter/deleter也是需要的。

  • 只有@property表示只读。
  • 同时有@property和@x.setter表示可读可写。
  • 同时有@property和@x.setter和@x.deleter表示可读可写可删除。
class student(object):  #新式类
    def __init__(self,id):  
        self.__id=id  
    @property  #读  
    def score(self):  
        return self._score  
    @score.setter #写  
    def score(self,value):  
        if not isinstance(value,int):  
            raise ValueError('score must be an integer!')    
        if value<0 or value>100:  
            raise ValueError('score must between 0 and 100')   
        self._score=value  
    @property #读(只能读,不能写)  
    def get_id(self):  
        return self.__id  
  
s=student('123456')  
s.score=60 #写  
print s.score #读  
#s.score=-2 #ValueError: score must between 0 and 100  
#s.score=32.6 #ValueError: score must be an integer!  
s.score=100 #写  
print s.score #读  
print s.get_id #读(只能读,不可写)
#s.get_id=456 #只能读,不可写:AttributeError: can't set attribute

运行结果:

60
100
123456

'''
遇到问题没人解答?小编创建了一个Python学习交流QQ群:778463939
寻找有志同道合的小伙伴,互帮互助,群里还有不错的视频学习教程和PDF电子书!
'''
class A(object):#要求继承object
    def __init__(self):
        self.__name=None
    
    #下面开始定义属性,3个函数的名字要一样!
    @property #读
    def name(self):
        return self.__name
    @name.setter #写
    def name(self,value):
        self.__name=value
    @name.deleter #删除
    def name(self):
        del self.__name
    
a=A()
print a.name #读
a.name='python'  #写
print a.name #读
del a.name #删除
#print a.name # a.name已经被删除 AttributeError: 'A' object has no attribute '_A__name'  

运行结果:

None
python

相关文章

Python中的迭代遍历 for in

Python中的迭代遍历 for in

遍历就是从头到尾依次从列...

pandas dataframe 过滤——apply最灵活!!!

按照某特定string字段长度过滤: import pandas as pd df = pd.read_csv('file...

相关与卷积(数字信号处理)的数学原理及 Python 实现

相关与卷积(数字信号处理)的数学原理及 Python 实现

数学原理    在数字信号处理中,相关(correlation)可以分为互相关(cross correlation)和自相关(auto-corr...

Python中小整数对象池和大整数对象池

1.小整数对象池 整数在程序中的使用非常广泛,Python为了优化速度,使用了小整数对象池, 避免为整数频繁申请和...

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。