python @property用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python @property用法相关的知识,希望对你有一定的参考价值。

class Student(object):

    @property
    def birth(self):
        return self._birth

    @birth.setter
    def birth(self, value):
        self._birth = value

    @property
    def age(self):
        return 2015 - self._birth

以上是关于python @property用法的主要内容,如果未能解决你的问题,请参考以下文章

Python中“*”和“**”的用法 || yield的用法 || ‘$in’和'$nin' || python @property的含义

python @property用法

python面向对象之property用法补充(getter,setter,deleter)

Python进阶-----property用法(实现了get,set,delete三种方法)

python基础----特性(property)静态方法(staticmethod)类方法(classmethod)__str__的用法

[高分]java方面的问题:请教高手db.properties连接池的用法