python 访问器@property的使用方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 访问器@property的使用方法相关的知识,希望对你有一定的参考价值。

@property 可以将python定义的函数“当做”属性访问,从而提供更加友好访问方式,但是有时候setter/getter也是需要的

假设定义了一个类Cls,该类必须继承自object类,有一私有变量__x

1. 第一种使用属性的方法:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# blog.ithomer.net
 
class Cls(object):
    def __init__(self):
        self.__x = None
     
    def getx(self):
        return self.__x
     
    def setx(self, value):
        self.__x = value
         
    def delx(self):
        del self.__x
         
    x = property(getx, setx, delx, set x property)
 
if __name__ == __main__:
    c = Cls()
    c.x = 100
    y = c.x
    print("set & get y: %d" % y)
     
    del c.x
    print("del c.x & y: %d" % y)

 

运行结果:

 

set & get y: 100
del c.x & y: 100

在该类中定义三个函数,分别用作赋值、取值、删除变量

property函数原型为property(fget=None,fset=None,fdel=None,doc=None),上例根据自己定义相应的函数赋值即可。


2. 第二种方法(在2.6中新增)
同方法一,首先定义一个类Cls,该类必须继承自object类,有一私有变量__x

class Cls(object):
    def __init__(self):
        self.__x = None
         
    @property
    def x(self):
        return self.__x
     
    @x.setter
    def x(self, value):
        self.__x = value
         
    @x.deleter
    def x(self):
        del self.__x
 
if __name__ == __main__:
    c = Cls()
    c.x = 100
    y = c.x
    print("set & get y: %d" % y)
     
    del c.x
    print("del c.x & y: %d" % y)

 


运行结果:
set & get y: 100
del c.x & y: 100
说明: 同一属性__x的三个函数名要相同。








以上是关于python 访问器@property的使用方法的主要内容,如果未能解决你的问题,请参考以下文章

python基础语法15 组合,封装,访问限制机制,内置装饰器property

python----02(面向对象进阶)

二十三Python 中 property() 函数及 @property 装饰器的使用

Python的黑魔法@property装饰器的使用技巧

访问可见性问题和@property装饰器

使用@property