python __set__ __get__ __delete__


class Attr(object):
    def __init__(self,attrname,attrtype):
        self.attrname=attrname
        self.attrtype=attrtype
    def __get__(self,instance,value): 
        return instance.__dict__[self.attrname]   
    def __set__(self,instance,value):
        if not isinstance(value,self.attrtype):
             raise TypeError("%s type error"%self.attrname)    
        instance.__dict__[self.attrname]=value
    def __delete__(self,instance):    
        del instance.__dict__[self.attrname]

class Person(object):
    name=Attr("name",str)
    age=Attr("age",int)        
p=Person()
p.age="23" 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM