码迷,mamicode.com
首页 > 编程语言 > 详细

python内置函数proprety()

时间:2016-04-23 23:12:08      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:property   python   property()   python内置函数   

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

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

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

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的三个函数名要相同。


本文出自 “陆雅亮” 博客,请务必保留此出处http://luyaliang.blog.51cto.com/3448477/1767089

python内置函数proprety()

标签:property   python   property()   python内置函数   

原文地址:http://luyaliang.blog.51cto.com/3448477/1767089

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!