• 技术文章 >Python技术 >Python基础教程

    python property装饰器是什么

    十一十一2021-03-03 09:36:00原创2076

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

    @property 的语法格式如下:

    @property
    def 方法名(self)

    @property 修饰的方法操作私有属性,代码如下:

    class Rect:
        def __init__(self,area):
            self.__area = area
        @property
        def area(self):
            return self.__area
    rect = Rect(30)
    print("矩形的面积是:",rect.area)

    输出结果:

    矩形的面积为: 30

    上述案例是直接使用私有类和属性直接进行封装的,还是比较简单的,如果是对公有方法访问私有成员变量还是比较困难的,因此,如果在遇到需要将公有变私有,可以直接调用property装饰器哦~

    专题推荐:property装饰器
    上一篇:如何使用python replace()方法? 下一篇:python sqrt函数进行开方使用

    相关文章推荐

    • python中eval函数如何使用?• 如何使用python replace()方法?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网