码迷,mamicode.com
首页 > 编程语言 > 详细

python 类(3) property

时间:2019-08-02 12:58:07      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:instance   setter   etc   val   inf   property   name   value   年龄   



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 类(3) property

标签:instance   setter   etc   val   inf   property   name   value   年龄   

原文地址:https://www.cnblogs.com/ericblog1992/p/11287661.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!