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

python @property和@attribute.setter理解

时间:2021-05-24 03:06:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:python   prope   code   sel   mamicode   lazy   ini   class   loading   

技术图片

 

 

```python

class Human:

def __init__(self, name, age):
    self.__name = name
    self.__age = age

@property
def age(self):
    return self.__age

@age.setter
def age(self, age):
    if age > 0:
        self.__age = age
    else:
        print(‘error‘)

h1 = Human(‘sai‘,22)
print(h1.age)
h1.age += 5
print(h1.age)

python @property和@attribute.setter理解

标签:python   prope   code   sel   mamicode   lazy   ini   class   loading   

原文地址:https://www.cnblogs.com/xiaozhusai/p/14747722.html

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