python 属性 property、getattr()、setattr()详解
直奔主题
使用中文注释需要使用
#-*-coding:utf-8-*-
property
property在python中有2中使用property方法:
1.@property @属性名称.setter @属性名称.deleter
2.使用property(fget, fset, fdel, doc)指定
1.使用装饰器@property
要求:(1)所用的类为新式类,在python3版本以上默认为新式类,或者是是直接或间接继承object的类
(2)定义的函数名称必须要是名称名(如属性名是name,那函数名称就为name,不能为其他的。详情看例子)
class Demo(object):
def __init__(self):
print("这是构造函数")
self._name = None @property
def name(self):
return self._name #这是属性get的方法 @name.setter
def name(self, value):#这是属性set的方法
self._name = value @name.deleter
def name(self):
print("this is the method of delete")
self._name = None if __name__ == "__main__":
testDemo = Demo()
print(testDemo.name)
testDemo.name = "name"
print(testDemo.name)
del testDemo.name
以下是结果:
#======以下是结果========
这是构造函数
None
name
this is the method of delete
2.使用property()方法 property(fget,fset,fdel,doc)
要求:(1)所用的类为新式类,在python3版本以上默认为新式类,或者是是直接或间接继承object的类
class Demo2(object):
def __init__(self):
print("这是构造函数")
self._value = None def getValue(self):#这是属性value的get方法
print("getting the value of property")
return self._value def setValue(self, value):#这是属性value的set方法
print("setting the value of property")
self._value = value def delValue(self):#这是属性value删除方法
print("this is the method of delete")
self._value = None value = property(fget=getValue, fset=setValue, fdel=delValue, doc="this is a message about the property of value") if __name__ == "__main__":
testDemo = Demo2()
print(testDemo.value)
testDemo.value = "name"
print("print the value of property:",testDemo.value)
del testDemo.value
以下是结果:
#======以下是结果========
这是构造函数
getting the value of property
None
setting the value of property
getting the value of property
('print the value of property:', 'name')
this is the method of delete
使用属性property2种方法存放多个值的例子
1.使用装饰器@property进行设置 属性含有多个值
class Demo4(object):
def __init__(self):
print("这是构造函数")
self._value1 = None
self._value2 = None @property
def values(self):
return self._value1, self._value2 #这是属性get的方法 @values.setter
def values(self, values):#这是属性set的方法
self._value1, self._value2 = values @values.deleter
def values(self):
print("this is the method of delete")
self._value1 = None
self._value2 = None if __name__ == "__main__":
testDemo = Demo4()
print(testDemo.values)
testDemo.values = "name","helloworld"
print("print the value of property:", testDemo.values)
del testDemo.values
以下是结果:
#======以下是结果========
这是构造函数
(None, None)
('print the value of property:', ('name', 'helloworld'))
this is the method of delete
2.property(fget, fset, fdel, doc)方法设置 属性含有多个值
class Demo3(object):
def __init__(self):
print("这是构造函数")
self._value = None
self._value2 = None def getoValue(self): # 这是属性value的get方法
print("getting the value of property")
return self._value, self._value2 def setoValue(self, values): # 这是属性value的set方法
print("setting the value of property")
self._value, self._value2 = values def deloValue(self): # 这是属性value删除方法
print("this is the method of delete")
self._value = None values = property(fget=getoValue, fset=setoValue, fdel=deloValue, doc="this is a message about the property of values") if __name__ == "__main__":
testDemo = Demo3()
print(testDemo.values)
testDemo.values = "name","helloworld"
print("print the value of property:", testDemo.values)
del testDemo.values
以下是结果:
这是构造函数
getting the value of property
(None, None)
setting the value of property
getting the value of property
('print the value of property:', ('name', 'helloworld'))
this is the method of delete
getter和setter
getter和setter 是在对象上动态的增加属性
if __name__ == "__main__":
testDemo = Demo2() print([n for n in dir(testDemo) if n[0] is not "_"])
setattr(testDemo, "newMethod", "hellworld")
print([n for n in dir(testDemo) if n[0] is not "_"])
value = getattr(testDemo, "newMethod")
print(value)
#使用getattr获取一个不存在的属性,如果属性不存在,则返回一个默认的值
value = getattr(testDemo, "yoyo", "the value is not exist!")
print(value)
以下是结果:
#======以下是结果========
这是构造函数
['delValue', 'getValue', 'setValue', 'value']
['delValue', 'getValue', 'newMethod', 'setValue', 'value']
hellworld
the value is not exist!
python 属性 property、getattr()、setattr()详解的更多相关文章
- Python中的getattr()函数详解
最近看Dive into python第四章自省中提到getattr()函数,作为一个内建函数平时自己没怎么用过所以也不太理解这个函数的一些用法 看了下函数本身的doc getattr(object, ...
- 【转】Python的hasattr() getattr() setattr() 函数使用方法详解
Python的hasattr() getattr() setattr() 函数使用方法详解 hasattr(object, name)判断一个对象里面是否有name属性或者name方法,返回BOOL值 ...
- Python包模块化调用方式详解
Python包模块化调用方式详解 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一般来说,编程语言中,库.包.模块是同一种概念,是代码组织方式. Python中只有一种模块对象类型 ...
- 【Python】Python内置函数dir详解
1.命令介绍 最近学习并使用了一个python的内置函数dir,首先help一下: 复制代码代码如下: >>> help(dir)Help on built-in function ...
- Python API 操作Hadoop hdfs详解
1:安装 由于是windows环境(linux其实也一样),只要有pip或者setup_install安装起来都是很方便的 >pip install hdfs 2:Client——创建集群连接 ...
- python设计模式之装饰器详解(三)
python的装饰器使用是python语言一个非常重要的部分,装饰器是程序设计模式中装饰模式的具体化,python提供了特殊的语法糖可以非常方便的实现装饰模式. 系列文章 python设计模式之单例模 ...
- Python调用windows下DLL详解
Python调用windows下DLL详解 - ctypes库的使用 2014年09月05日 16:05:44 阅读数:6942 在python中某些时候需要C做效率上的补充,在实际应用中,需要做部分 ...
- Python安装、配置图文详解(转载)
Python安装.配置图文详解 目录: 一. Python简介 二. 安装python 1. 在windows下安装 2. 在Linux下安装 三. 在windows下配置python集成开发环境(I ...
- 【和我一起学python吧】Python安装、配置图文详解
Python安装.配置图文详解 目录: 一. Python简介 二. 安装python 1. 在windows下安装 2. 在Linux下安装 三. 在windows下配置python集成开发环境( ...
- Python中的高级数据结构详解
这篇文章主要介绍了Python中的高级数据结构详解,本文讲解了Collection.Array.Heapq.Bisect.Weakref.Copy以及Pprint这些数据结构的用法,需要的朋友可以参考 ...
随机推荐
- [HDU6252]Subway Chasing
题目大意: 一条直线上有n个点,两个人在直线上走,保持x的距离. 告诉你m条信息,告诉你一个人在ab之间时,另一个人在cd之间. 问这些信息是否矛盾,如果不矛盾,求相邻两点之间的最小距离. 思路: m ...
- Scala零基础教学【41-60】
第41讲:List继承体系实现内幕和方法操作源码揭秘 def main(args: Array[String]) { /** * List继承体系实现内幕和方法操作源码揭秘 * * List本身是一个 ...
- SpingMVC实现操作的第一方式
(一) 使用SpringMVC框架的步骤 (1):在web.xml中配置前端控制器 (2):在Spring-servlet.xml中配置 配置处理器映射器HandlerMapping(处理器Handl ...
- Delphi 使窗体Showmodal后可以操作其他窗体
对话框ShowModal之后不能操作其它窗口,实际上是因为Windows Disable了其它窗口.所以当你需要在模态对话框中访问其它已经可见的窗口时,需要用EnableWindow API来激活对应 ...
- 7zip File: How to Uncompress 7z files on Ubuntu, Debian, Fedora
转:http://www.thegeekstuff.com/2010/04/7z-7zip-7za-file-compression/ Question: How do I uncompress a ...
- 【java】值传递和引用传递---对象作为方法的参数传入属于哪种传递
首先 这篇作为一个永久性的问题,欢迎大家讨论 其次,个人结论如下几条: ①Java有且只有一种传递,即 值传递 ②作为方法的参数传入,都是对原本的实参进行了copy ③只不过[实参]若是[基本数据类型 ...
- html里嵌入CSS的三种方式
在HTML中定义CSS的方式有:Embedding(嵌入式).Linking(引用式).Inline(内联式),下面通过实例为大家详细介绍下它们的特点 在HTML中常用以下3种方式定义CSS:Em ...
- SQL Server 笔试题总结
1:编写Sql语句,查询id重复3次以上的条目,表为Pram(id,name) 先看建立的表: SQL语句: 直接使用一个子查询即可 select * from Pram where id in(se ...
- hdu 1863 畅通project
#include <stdio.h> #include <string.h> #include <iostream> #include <algorithm& ...
- 在redhat下使用x11vnc进行桌面共享
1.在redhat上安装x11vnc时.你须要注意下面几个方面: (1)下载x11vnc的源代码包: 网址例如以下所看到的: http://sourceforge.net/projects/libvn ...