Python之property的使用

屬性property 1. 私有屬性添加getter和setter方法 class Money(object): def __init__(self): self.__money=100 def setMoney(self,value): if isinstance(value,int): self.__money=valu
相關文章
相關標籤/搜索