python @dec与@property
时间: 2023-09-05 07:12:34 浏览: 119
Python 中@property的用法详解
5星 · 资源好评率100%
装饰器(decorator)是一种可以给函数或类动态添加功能的工具。在Python中,有一些内置的装饰器,比如@staticmethod、@classmethod和@property。
@staticmethod装饰器用于定义静态方法。静态方法是一个和类没有绑定关系的方法,可以直接通过类名调用,也可以通过实例调用。使用@staticmethod装饰器可以将一个方法转变为静态方法。
@classmethod装饰器用于定义类方法。类方法是与类相关联的方法,通过类名调用时,会将类本身作为第一个参数传入。使用@classmethod装饰器可以将一个方法转变为类方法。
@property装饰器用于定义属性。属性是一种特殊的方法,可以像访问属性一样来访问方法。使用@property装饰器可以将一个方法转变为属性。通常,一个@property装饰器会配合一个相应的.setter装饰器使用,来定义属性的设置方法。
举个例子,对于一个名为Student的类:
class Student(object):
@property
def score(self):
return self._score
@score.setter
def score(self, value):
if not isinstance(value, int):
raise ValueError('score must be an integer!')
if value < 0 or value > 100:
raise ValueError('score must between 0 ~ 100!')
self._score = value
这个类中的score方法被@property装饰器修饰,使得它可以像属性一样被访问。同时,@score.setter装饰器定义了一个setter方法,用于设置score属性的值。这样,我们可以通过实例的score属性来获取和设置学生的成绩。
总结起来,@staticmethod、@classmethod和@property是Python内置的装饰器,分别用于定义静态方法、类方法和属性。它们可以让我们的代码更加简洁和易读。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [python面试常问的几个内置装饰器:@staticmethod、@classmethod和@property](https://blog.csdn.net/weixin_35383324/article/details/113674252)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [Python 使用@property对属性进行数据规范性校验](https://blog.csdn.net/a772304419/article/details/120813610)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文