直奔主题

使用中文注释需要使用

#-*-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()详解的更多相关文章

  1. Python中的getattr()函数详解

    最近看Dive into python第四章自省中提到getattr()函数,作为一个内建函数平时自己没怎么用过所以也不太理解这个函数的一些用法 看了下函数本身的doc getattr(object, ...

  2. 【转】Python的hasattr() getattr() setattr() 函数使用方法详解

    Python的hasattr() getattr() setattr() 函数使用方法详解 hasattr(object, name)判断一个对象里面是否有name属性或者name方法,返回BOOL值 ...

  3. Python包模块化调用方式详解

    Python包模块化调用方式详解 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一般来说,编程语言中,库.包.模块是同一种概念,是代码组织方式. Python中只有一种模块对象类型 ...

  4. 【Python】Python内置函数dir详解

    1.命令介绍 最近学习并使用了一个python的内置函数dir,首先help一下: 复制代码代码如下: >>> help(dir)Help on built-in function ...

  5. Python API 操作Hadoop hdfs详解

    1:安装 由于是windows环境(linux其实也一样),只要有pip或者setup_install安装起来都是很方便的 >pip install hdfs 2:Client——创建集群连接 ...

  6. python设计模式之装饰器详解(三)

    python的装饰器使用是python语言一个非常重要的部分,装饰器是程序设计模式中装饰模式的具体化,python提供了特殊的语法糖可以非常方便的实现装饰模式. 系列文章 python设计模式之单例模 ...

  7. Python调用windows下DLL详解

    Python调用windows下DLL详解 - ctypes库的使用 2014年09月05日 16:05:44 阅读数:6942 在python中某些时候需要C做效率上的补充,在实际应用中,需要做部分 ...

  8. Python安装、配置图文详解(转载)

    Python安装.配置图文详解 目录: 一. Python简介 二. 安装python 1. 在windows下安装 2. 在Linux下安装 三. 在windows下配置python集成开发环境(I ...

  9. 【和我一起学python吧】Python安装、配置图文详解

     Python安装.配置图文详解 目录: 一. Python简介 二. 安装python 1. 在windows下安装 2. 在Linux下安装 三. 在windows下配置python集成开发环境( ...

  10. Python中的高级数据结构详解

    这篇文章主要介绍了Python中的高级数据结构详解,本文讲解了Collection.Array.Heapq.Bisect.Weakref.Copy以及Pprint这些数据结构的用法,需要的朋友可以参考 ...

随机推荐

  1. 【动态规划】【最长上升子序列】【贪心】bzoj1046 [HAOI2007]上升序列

    nlogn求出最长上升子序列长度. 对每次询问,贪心地回答.设输入为x.当前数a[i]可能成为答案序列中的第k个,则若 f[i]>=x-k && a[i]>ans[k-1] ...

  2. 【LCA倍增】POJ1330-Nearest Common Ancestors

    [知识点:离线算法&在线算法] 一个离线算法,在开始时就需要知道问题的所有输入数据,而且在解决一个问题后就要立即输出结果. 一个在线算法是指它可以以序列化的方式一个个的处理输入,也就是说在开始 ...

  3. 6.2(java学习笔记)字节流

    一.FileInputStream 文件输入流从文件中获取输入字节.简单的说就是读取文件. 1.构造方法 FileInputStream(File file)//根据指定文件对象创建一个输入流 2.常 ...

  4. TZOJ 数据结构实验:单链表元素插入

    描述 实现函数CreateHeader用于创建空链表,实现Insert函数并调用它完成带头节点链表的创建. 部分代码已经给出,请补充完整,提交时请勿包含已经给出的代码. void PrintLinkL ...

  5. golang的reflect

    引用自 http://www.jb51.net/article/115002.htm 和 C 数据结构一样,Go 对象头部并没有类型指针,通过其自身是无法在运行期获知任何类型相关信息的.反射操作所需要 ...

  6. ubi层次

    转:http://www.360doc.com/content/11/0518/13/496343_117643185.shtml UBI是什么? 它是一种flash管理方式 flash是一系列连续的 ...

  7. C# log4net打不出日志 (IIS项目)

    配置文件都配了,引用也引用了,调用也是对的,网上找博客也找不到,疯掉了. 后来腆着脸问了一个前辈,他告诉我的,添完就好了. 给项目的这个文件,添加这行代码: [assembly: log4net.Co ...

  8. JVM Object Query Language (OQL) 查询语言

    Object Query Language (OQL) OQL is SQL-like query language to query Java heap. OQL allows to filter/ ...

  9. RegexHelper

    ylbtech-Unitity-cs: RegexHelper 验证帮助类 1.A,效果图返回顶部   1.B,源代码返回顶部 1.B.1,RegexMail #region RegexMail pu ...

  10. Key-Value Observing (键值监測)

    Key-Value Observing (键值监測) 简单介绍 KVO是一套当目标对象的属性值改变时观察者对象能够接受到通知的机制.必须先理解KVC才干更好的理解KVO,前者是后者的实现基础. 这种通 ...