标签:put content color style col delete elf and ice
经典类只@property 没有setter 和deleter
class A(object): def __init__(self,price): self.__price=price @property def price(self): return self.__price @price.setter def price(self,value): self.__price=value
@price.deleter def price(self): print ‘@price.deleter‘
a=A(1.23)
print(a.price)
a.price=23.4
print(a.price)
del a.price
结果:
标签:put content color style col delete elf and ice
原文地址:http://www.cnblogs.com/howhy/p/7831521.html