创新互联Python教程: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教程:Python中装饰属性的方法
文章地址:http://www.mswzjz.cn/qtweb/news3/386403.html

攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能