python 类 property
Posted ericblog1992
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 类 property相关的知识,希望对你有一定的参考价值。
class PetCat():
""" 家猫类"""
def __init__(self, name, age):
self.name = name
# 私有属性
self.__age = age
@property
def age(self):
return self.__age
@age.setter
def age(self,value):
if not isinstance(value, int):
print(‘年龄只能是整数‘)
return 0
if value < 0 or value > 100:
print(‘年龄只能介于0-100之间‘)
return 0
self.__age = value
# 描述符
@property
def show_info(self):
return "我叫0,今年1岁".format(self.name,self.age)
def __str__(self):
# return self.show_info()
return ‘---‘
if __name__ == ‘__main__‘:
cat_black = PetCat(‘小黑‘, 2)
rest = cat_black.show_info
print(rest)
# print(‘-------------‘)
# print(cat_black) #我叫小黑,今年2岁
cat_black.age = 6
rest = cat_black.show_info
print(rest)
以上是关于python 类 property的主要内容,如果未能解决你的问题,请参考以下文章
python-类与对象 如何创建可管理的对象属性 (图文并茂)