Python中的@property装饰器

要了解@property的用途,首先要了解如何创建一个属性。

一般而言,属性都通过__init__方法创建,比如:

1 class Student(object):
2     def __init__(self,name,score):
3         self.name=name
4         self.score=score

创建实例,运行结果:

1 tim=Student(‘Tim‘,97)
2 tim.score=100
3 tim.score
4 100
5 mary=Student(‘Mary‘,90)
6 mary.score
7 90

但是这样子有2个坏处:

1.__init__ 中定义的属性是可变的,如果一个系统的开发人员在知道属性名的情况下,就可以进行随意更改(尽管可能是在无意识的情况下),如果一不小心篡改了,后台排查很难!

2.不利于进行参数检查,比如:score属性范围本该是[0,100],但如果输成了1000也不会报错。

因此,一个标准的创建属性流程如下:

1.定义三个跟属性(本例中是score)相关的函数:

get(用于返回score属性)

set(用于设定score属性)

del(用于删除score属性)

在set函数中,可以添加一些取值范围,比如[0,100].此外,为了私有化属性,前面可以加上__。

这样就做到了既能通过创建实例设定属性,又不让开发人员轻易修改score属性。

如下所示:

 1 class Student(object):
 2     def getScore(self):
 3         return self.__score
 4
 5     def setScore(self,score):
 6         if score>100 or score<0:
 7             raise ValueError (‘score is out of range.‘)
 8         else:
 9             self.__score=score
10
11     def delScore(self):
12         del self.__score

这样,一旦score取值不在设定范围内,就会报错!

创建一个实例,能够正常运行:

1 Mary=Student()
2 Mary.setScore(90)
3 Mary.getScore()
4 90

但是,通过方法getScore()查看分数似乎还是有点繁琐,能不能把它当作一个属性去调用呢?至少调用不需要输入()嘛!

当然是可以的。

办法就是通过装饰器:@property

通过给getScore,setScore,delScore三个方法分别添加三个装饰器,就可以直接把这三个方法作为属性去调用了!

如下所示:

 1 class Student(object):
 2     @property
 3     def getScore(self):
 4         return self.__score
 5     @getScore.setter
 6     def setScore(self,score):
 7         if score>100 or score<0:
 8             raise ValueError (‘score is out of range.‘)
 9         else:
10             self.__score=score
11     @getScore.deleter
12     def delScore(self):
13         del self.__score
1 tim=Student()
2 tim.setScore=90
3 tim.getScore
4 90

非常神奇!方法居然变成了属性,为什么呢?

因为装饰器@property本质上是一个property()函数,property()函数也是一个装饰器。

一般的装饰器是用在普通函数上,而@property是用在类内的方法上。

property()函数包含了三个部分:getter,setter,deleter。

因为setter和deleter是property()的第二和第三个参数,不能直接套用@语法。

因此,本质上@property相当于getter部分,@setScore.setter相当于setter部分,@delScore.deleter相当于deleter部分。

所以,上面的代码本质上等价于:

 1 class Student(object):
 2     def getScore(self):
 3         return self.__score
 4
 5     def setScore(self,score):
 6         if score>100 or score<0:
 7             raise ValueError (‘score is out of range.‘)
 8         else:
 9             self.__score=score
10
11     def delScore(self):
12         del self.__score
13
14     score=property(getScore,setScore,delScore,‘description‘)

最后,为了函数名美观,可以把函数名字改成Score():

 1 class Student(object):
 2     @property
 3     def Score(self):
 4         return self.__score
 5     @Score.setter
 6     def Score(self,score):
 7         if score>100 or score<0:
 8             raise ValueError (‘score is out of range.‘)
 9         else:
10             self.__score=score
11     @Score.deleter
12     def delScore(self):
13         del self.__score
14
15 tim=Student()
16 tim.Score=90
17 tim.Score
18 90

几篇个人觉得写的比较清楚的文章:

http://www.runoob.com/python/python-func-property.html

https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/00143186781871161bc8d6497004764b398401a401d4cce000

https://www.cnblogs.com/cicaday/p/python-decorator.html

原文地址:https://www.cnblogs.com/szjshuffle/p/10363463.html

时间: 2024-10-08 07:27:13

Python中的@property装饰器的相关文章

python 中多个装饰器的执行顺序

python 中多个装饰器的执行顺序: def wrapper1(f1): print('in wrapper1') def inner1(*args,**kwargs): print('in inner1') ret = f1(*args,**kwargs) return ret return inner1 def wrapper2(f2): print('in wrapper2') def inner2(*args,**kwargs): print('in inner2') ret = f2

Python中的单例模式——装饰器实现剖析

Python中单例模式的实现方法有多种,但在这些方法中属装饰器版本用的广,因为装饰器是基于面向切面编程思想来实现的,具有很高的解耦性和灵活性. 单例模式定义:具有该模式的类只能生成一个实例对象. 先将代码写上 #创建实现单例模式的装饰器 1 def singleton (cls, *args, **kwargs): 2 instances = {} 3 def get_instance (*args, **kwargs): 4 if cls not in instances: 5 instanc

python中闭包和装饰器

---恢复内容开始--- 使用像javascript和python这样支持面向对象范式的语言进行编程时,都会涉及到闭包的概念以及闭包的使用.我们今天就从这两个方面来讨论一下闭包: 首先是维基百科中关于闭包的概念:在一些语言中,在函数中可以(嵌套)定义另一个函数时,如果内部的函数引用了外部的函数的变量,则可能产生闭包.闭包可以用来在一个函数与一组"私有"变量之间创建关联关系.在给定函数被多次调用的过程中,这些私有变量能够保持其持久性. 根据这句话,其实我们自己就可以总结出在python语

Python 函数式编程、装饰器以及一些相关概念简介

Python 中的 Decorator(装饰器) 是对一个函数或者方法的封装,从而使其可以完成一些与自身功能无关的工作. 预备知识 一切皆对象 在 Python 中,所有的一切都被视为对象,任何的变量.函数.类等都是 object 的子类.因此除了变量之外,函数和类等也可以被指向和传递. >>> def foo(): ... pass ... >>> def Foo(): ... pass ... >>> v = foo >>> v

Python中,关于@property装饰器

1.为什么使用@property装饰器?br/>在类中,当我么不想在外界直接调用到类的属性,或者不想展示属性的真实内容时,可以用到@property.它规定了我们直接用 对象名.属性名 获取对象属性时并不会直接取得对象的属性,而是通过调用@property装饰过的属性函数来给调用者反馈. 2.我们为什么不使用特定的方法来进行上面的操作?原因是因为太繁琐.例: class Person: def __init__(self, username, password) -> None: self.u

python staticmethod,classmethod方法的使用和区别以及property装饰器的作用

class Kls(object): def __init__(self, data): self.data = data def printd(self): print(self.data) @staticmethod def smethod(*arg): print('Static:', arg) @classmethod def cmethod(*arg): print('Class:', arg) >>> ik = Kls(23) >>> ik.printd()

python面向对象:组合、封装、property装饰器、多态

一.组合二.封装三.property装饰器四.多态 一.组合 ''' 1. 什么是组合 一个对象的属性是来自于另外一个类的对象,称之为组合 2. 为何用组合 组合也是用来解决类与类代码冗余的问题 3. 如何用组合 ''' # class Foo: # aaa=1111 # def __init__(self,x,y): # self.x=x # self.y=y # # def func1(self): # print('Foo内的功能') # # # class Bar: # bbb=2222

python @property装饰器

@property装饰器 @property装饰器就是负责把一个方法变成属性调用把一个getter方法变成属性,只需要加上@property就可以了,此时,@property本身又创建了另一个装饰器@score.setter,负责把一个setter方法变成属性赋值class Student(object): @property def score(self): return self._score @score.setter def score(self, value): if not isin

【python】-- 类的装饰器方法、特殊成员方法

装饰器方法 类的另外的特性,装饰器方法:静态方法(staticmethod).类方法(classmethod).属性方法(property) 一.静态方法 在方法名前加上@staticmethod装饰器,表示此方法为静态方法 class Dog(object): def __init__(self,name): self.name = name @staticmethod #在方法前加上staticmethod 装饰器定义静态方法 def eat(): print("dog is eating&