品易云推流 关闭
文章详情页
文章 > Python基础教程 > Python中装饰属性的方法

Python中装饰属性的方法

头像

小妮浅浅

2021-05-26 09:42:522161浏览 · 0收藏 · 0评论

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电脑。

关注

关注公众号,随时随地在线学习

本教程部分素材来源于网络,版权问题联系站长!

底部广告图