Python中装饰属性的方法

美女程序员鼓励师

1、使用 get、set 方法来封装对一个属性的访问在很多面向对象编程的语言中都很常见。

class Student(object):

    def __init__(self, name, score):

        self.name = name

        self.__score = score

 

    def get_score(self):

        return self.__score

 

    def set_score(self, score):

        self.__score = score

 

s = Student('zhangsan', 90)

s.set_score(100)

print(s.get_score())

# 输出100

2、Python里提供了@property装饰器,可以把方法“装饰”成属性调用。

class Student(object):

    def __init__(self, name, score):

        self.name = name

        self.__score = score

 

    @property

    def score(self):

        return self.__score

 

    @score.setter

    def score(self, score):

        self.__score = score

 

s = Student('zhangsan', 90)

s.score = 100

print(s.score)

# 输出100

以上就是Python中装饰属性的方法,希望对大家有所帮助。更多Python学习推荐:python教学

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

以上是 Python中装饰属性的方法 的全部内容, 来源链接: utcz.com/z/543844.html

回到顶部