python __set__ __get__ __delete__(python基础教程)

网友投稿 288 2022-08-27


python __set__ __get__ __delete__(python基础教程)

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"


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:web.py
下一篇:Java设计模式之桥接模式的示例详解
相关文章

 发表评论

暂时没有评论,来抢沙发吧~