python Property属性用法
假设定义了一个类:C,该类必须继承自object类,有一私有变量_x
-
class C:
-
def __init__(self):
-
self.__x=None
1.现在介绍第一种使用属性的方法:
在该类中定义三个函数,分别用作赋值、取值和删除变量(此处表达也许不很清晰,请看示例)
-
def getx(self):
-
return self.__x
-
def setx(self,value):
-
self.__x=value
-
def delx(self):
-
del self.__x
-
x=property(getx,setx,delx,'')
property函数原型为property(fget=None,fset=None,fdel=None,doc=None),所以根据自己需要定义相应的函数即可。
现在这个类中的x属性便已经定义好了,我们可以先定义一个C的实例c=C(),然后赋值c.x=100,取值y=c.x,删除:del c.x。是不是很简单呢?请看第二种方法
2.下面看第二种方法(在2.6中新增)
首先定义一个类C:
-
class C:
-
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
同一属性的三个函数名要相同。
文章源地址:http://www.cnblogs.com/lovemo1314/archive/2011/05/03/2035600.html
阅读(2232) | 评论(0) | 转发(0) |