码迷,mamicode.com
首页 > 其他好文 > 详细

元类编程--property动态属性

时间:2018-04-18 18:57:47      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:self   import   __name__   get   image   ini   ==   ima   col   

from datetime import date, datetime
class User:
    def __init__(self, name, birthday):
        self.name = name
        self.birthday = birthday
        self._age = 0

    # def get_age(self):
    #     return datetime.now().year - self.birthday.year

    @property #动态属性
    def age(self): #属性描述符,get方法
        return datetime.now().year - self.birthday.year

    @age.setter
    def age(self, value):
        self._age = value

if __name__ == "__main__":
    user = User("bobby", date(year=1987, month=1, day=1))
    user.age = 30
    print (user._age)
    print(user.age)

技术分享图片

 

元类编程--property动态属性

标签:self   import   __name__   get   image   ini   ==   ima   col   

原文地址:https://www.cnblogs.com/Erick-L/p/8876276.html

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