您现在的位置是:课程教程文章

Python中装饰属性的方法

2023-12-14 22:02课程教程文章 人已围观

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中装饰属性的方法

上一篇:Python死锁的产生原因

下一篇:没有了

站点信息

  • 文章统计篇文章