为什么在Python代码中需要装饰器

Python is praised for its clarity and syntactic sugariness. In this article, I will teach you to use decorators in Python to make your code readable and clean.

Python的清晰性和语法含糖度受到赞誉。 在本文中,我将教您在Python中使用装饰器,以使您的代码更具可读性和简洁性。

什么是装饰器? (What Are Decorators?)

To understand what decorators are, you first need to be familiar with the way Python handles functions. From its point of view, functions are no different than regular objects. They have properties and can be reassigned:

要了解装饰器是什么,首先需要熟悉Python处理函数的方式。 从它的角度来看,功能与常规对象没有什么不同。 它们具有属性,可以重新分配:

Moreover, you can pass them as arguments to other functions:

此外,您可以将它们作为参数传递给其他函数:

Now, to decorators. A decorator is used to modify the behaviour of a function or class. The way this is achieved is by defining a function (decorator) that returns another function. This sounds complicated, but you will understand everything with this example:

现在,到装饰员。 装饰器用于修改函数或类的行为。 实现此方法的方法是定义一个函数(装饰器),该函数返回另一个函数。 这听起来很复杂,但是您将通过此示例理解所有内容:

Let’s go step by step:

让我们一步一步走:

  • Firstly, we define the logging_decorator function on line 1. It accepts a single argument, which is the function we are trying to decorate.

    首先,我们在第1行上定义logging_decorator函数。它接受一个参数,这是我们尝试修饰的函数。

  • Inside, we define another function: the logging_wrapper. The logging_wrapper is then returned and used in place of the original decorated function.

    在内部,我们定义了另一个函数: logging_wrapper 。 然后返回logging_wrapper并代替原始的装饰函数。

  • On line 7, you can see how the decorator is applied to the sum function.

    在第7行,您可以看到装饰器如何应用于sum函数。

  • On line 11, when we call sum, it will not just call sum. It will call the logging_wrapper, which will log before and after calling the sum.

    在第11行,当我们调用sum ,它不仅会调用sum 。 它将调用logging_wrapper ,它将在调用sum之前和之后进行记录。

为什么需要装饰器? (Why Do You Need Decorators?)

It is simple: readability. Python is praised for its clear and concise syntax, and decorators are no exceptions. If there is any behaviour that is common to more than one function, you probably need to make a decorator. Here are some examples of when they might come in handy:

很简单:可读性。 Python因其简洁明了的语法而广受赞誉,装饰器也不例外。 如果有多个功能共有的行为,则可能需要制作装饰器。 以下是一些可能派上用场的示例:

  • Checking argument type at runtime

    在运行时检查参数类型
  • Benchmark function calls

    基准函数调用
  • Cache function results

    缓存功能结果
  • Count function calls

    计算函数调用
  • Checking metadata (permissions, roles, etc.)

    检查元数据(权限,角色等)
  • Metaprogramming

    元编程
  • And much more…

    以及更多…

Now I will list some code examples.

现在,我将列出一些代码示例。

具有返回值的装饰器 (Decorators With Return Values)

Suppose we want to know how long each function call takes. Also, functions return something most of the time, so the decorator must handle that as well:

假设我们想知道每个函数调用要花费多长时间。 而且,函数大多数时候会返回某些东西,因此装饰器也必须处理该问题:

You can see we store the returned value in result on line 5. But before returning it, we have to finish timing the function. This is an example of behaviour that would not be possible without decorators.

您可以看到我们将返回的值存储在第5行的result中。但是在返回它之前,我们必须完成对函数的计时。 这是没有装饰器就无法实现的行为示例。

带参数的装饰器 (Decorators With Arguments)

Sometimes, we want a decorator that accepts values (like @app.route('/login') in Flask):

有时,我们需要一个接受值的装饰器(例如Flask中的@app.route('/login') ):

In order to achieve that, we defined an extra function that accepts an argument and returns a decorator.

为了实现这一点,我们定义了一个额外的函数,该函数接受一个参数并返回一个装饰器。

用课堂装饰 (Decorating With Classes)

It is possible to decorate using classes instead of functions. The only difference is the syntax, so do what you are more comfortable with. Here is the logging decorator rewritten using classes:

可以使用类而不是函数进行装饰。 唯一的区别是语法,所以您更喜欢它。 这是使用类重写的日志装饰器:

The upside is that you do not have to deal with nested functions. All you need to do is define a class and override the __call__ method.

好处是您不必处理嵌套函数。 您需要做的就是定义一个类并覆盖__call__方法。

装饰类 (Decorating Classes)

There may be times when you want to decorate each and every method in a class. You could always write it like this:

有时您可能想装饰一个类中的每个方法。 您总是可以这样写:

But if you have lots of methods, this can get out of hand. Thankfully, there is a way to decorate the whole class at once:

但是,如果您有很多方法,这可能会一发不可收拾。 值得庆幸的是,有一种方法可以一次装饰整个类:

Now, do not panic. This looks complicated, but this is the same logic:

现在,不要惊慌。 这看起来很复杂,但这是相同的逻辑:

  • Firstly, we leave the logging_decorator as is. It will be applied to all methods of a class.

    首先,我们保持logging_decorator 。 它将应用于类的所有方法。

  • Then we define a new decorator: log_all_class_methods. It is like a regular decorator but returns a class instead.

    然后,我们定义一个新的装饰器: log_all_class_methods 。 它就像一个普通的装饰器,但是返回一个类。

  • The NewCls has a custom __getattribute__. For all calls to the original class, it will decorate the functions with the logging_decorator.

    NewCls有一个自定义__getattribute__ 。 对于所有对原始类的调用,它将使用logging_decorator装饰函数。

内置装饰器 (Built-In Decorators)

Not only can you define your own decorators, but there are some shipped in the standard library as well. I will list the three that I have worked with the most:

您不仅可以定义自己的装饰器,而且标准库中也有一些装饰器。 我将列出我工作最多的三个人:

  • @property — A decorator from built-ins that lets you define getters and setters for class properties.

    @property property-内置的装饰器,可让您定义类属性的getter和setter。

  • @lru_cache — A decorator from the functools module. It memorizes function arguments and return values, which is handy for pure functions (like the factorial).

    @lru_cachefunctools模块中的装饰器。 它存储函数参数和返回值,这对于纯函数(例如factorial )非常方便。

  • @abstractmethod — A decorator from the abc module. Indicates that the method is abstract and implementation details are missing.

    @abstractmethod —来自abc模块的装饰器。 表示该方法是抽象的,并且缺少实现细节。

结束语 (Closing Notes)

Thank you for reading, I hope you liked my article. Stay subscribed for more Python content!

感谢您的阅读,希望您喜欢我的文章。 请继续订阅更多Python内容!

资源资源 (Resources)

  • PEP 318 — Decorators for Functions and Methods

    PEP 318 —功能和方法的装饰器

  • Higher-order functions and operations on callable objects

    可调用对象的高阶函数和操作

翻译自: https://medium.com/better-programming/why-you-need-decorators-in-your-python-code-df12d43eac9c

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/387998.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Elasticsearch Reference [6.7] » Modules » Network Settings

2019独角兽企业重金招聘Python工程师标准>>> Search Settings Node Network Settingsedit Elasticsearch binds to localhost only by default. This is sufficient for you to run a local development server (or even a development cluster, if you star…

【百度】大型网站的HTTPS实践(一)——HTTPS协议和原理

大型网站的HTTPS实践(一)——HTTPS协议和原理 原创 网络通信/物联网 作者:AIOps智能运维 时间:2018-11-09 15:07:39 349 0前言 百度于2015年上线了全站HTTPS的安全搜索,默认会将HTTP请求跳转成HTTPS。从今天开始&…

数据清理最终实现了自动化

苹果 | GOOGLE | 现货 | 其他 (APPLE | GOOGLE | SPOTIFY | OTHERS) Editor’s note: The Towards Data Science podcast’s “Climbing the Data Science Ladder” series is hosted by Jeremie Harris. Jeremie helps run a data science mentorship startup called Sharpest…

mui 与jquery 同时使用,$冲突解决办法。

(function($,doc,$$) { 。。。。。 }(mui, document, jQuery)); 使用$$代替jQuery。 var $$jQuery.noConflict();此方法也可以 转载于:https://www.cnblogs.com/mustanglqt/p/10608499.html

LVS原理介绍及安装过程

一、ARP技术概念介绍 为什么讲ARP技术,因为平常工作中有接触。还有就是LVS的dr模式是用到arp的技术和数据。 1、什么是ARP协议 ARP协议全程地址解析协议(AddressResolution Protocol,ARP)是在仅知道主机的IP地址时确定其物理地…

Python气流介绍

This is a memo to share what I have learnt in Apache Airflow, capturing the learning objectives as well as my personal notes. The course is taught by Mike Metzger from DataCamp.这是一份备忘录,旨在分享我在Apache Airflow中学到的知识,记录…

java~springcloud微服务目录索引

回到占占推荐博客索引 最近写了不过关于java,spring,微服务的相关文章,今天把它整理一下,方便大家学习与参考。 java~springcloud微服务~目录索引 springcloud~服务注册与发现Eureka的使用 springcloud~配置中心的使用 springclou…

DNS Bind9在windows7下

有些公司技术力量薄弱一些,一直在用windows系统,所以本文从windows出发,安装bind,利用它的view功能,做智能DNS,解决双线机房南北电信联通访问问题前言: 搞LINUX的朋友都知道,bind是l…

正确的词典访问方式

unity3d 词典访问Python字典指南 (Python Dictionary Guide) The dictionary is one of the data structures that are ready to use when programming in Python.字典是使用Python进行编程时可以使用的数据结构之一。 在我们开始之前,什么是字典? (Bef…

Vue.js(5)- 全局组件

全局组件 定义组件的语法 Vue.component(组件的名称, { 组件的配置对象 }) 在组件的配置对象中:可以使用 template 属性指定当前组件要渲染的模板结构; 使用组件的语法 把 组件的名称, 以标签的形式,引入到页面上就行; // 导入v…

DNS的几个基本概念:

一. 根域 就是所谓的“.”,其实我们的网址www.baidu.com在配置当中应该是www.baidu.com.(最后有一点),一般我们在浏览器里输入时会省略后面的点,而这也已经成为了习惯。 根域服务器我们知道有13台&#xff…

废水处理计算书 excel_废水监测数据是匿名的吗?

废水处理计算书 excelOur collective flushes help track and respond to Covid-19 and so much more. Your body waste contains harvestable compounds that can reveal your illnesses and diseases, consumption habits, and cosmetic use. Researchers gain insights from…

文件在线预览 图片 PDF Excel Word

1、前端实现pdf文件在线预览功能 方式一、pdf文件理论上可以在浏览器直接打开预览但是需要打开新页面。在仅仅是预览pdf文件且UI要求不高的情况下可以直接通过a标签href属性实现预览 <a href"文档地址"></a> 2、word、xls、ppt文件在线预览功能 word、pp…

数据科学还是计算机科学_您应该拥有数据科学博客的3个原因

数据科学还是计算机科学“Start a Blog to cement the things you learn. When you teach what you’ve learned in the form of a blog you can see the gaps in your knowledge and fill them in” — My Manager (2019)“创建一个博客以巩固您所学到的东西。 当您以博客的形…

D3.js 加标签

条形图还可以配上实际的数值,我们通过文本元素添加数据值。 svg.selectAll("text").data(dataset).enter().append("text").text(function(d){return d;}) 通过 x 和 y 值来定位文本元素。 .attr("text-anchor", "middle").attr("…

oppo5.0以上机器(亲测有效)激活Xposed框架的教程

对于喜欢玩手机的朋友而言&#xff0c;常常会用到xposed框架以及种类繁多功能强大的模块&#xff0c;对于5.0以下的系统版本&#xff0c;只要手机能获得ROOT权限&#xff0c;安装和激活xposed框架是异常简便的&#xff0c;但随着系统版本的迭代&#xff0c;5.0以后的系统&#…

和matlab一样的轻量级

Python&#xff08;英国发音&#xff1a;/ˈpaɪθən/ 美国发音&#xff1a;/ˈpaɪθɑːn/&#xff09;, 是一种面向对象、解释型计算机程序设计语言&#xff0c;由Guido van Rossum于1989年发明&#xff0c;第一个公开发行版发行于1991年。Python是纯粹的自由软件&#xff…

熊猫分发_流利的熊猫

熊猫分发Let’s uncover the practical details of Pandas’ Series, DataFrame, and Panel让我们揭露Pandas系列&#xff0c;DataFrame和Panel的实用细节 Note to the Readers: Paying attention to comments in examples would be more helpful than going through the theo…

redis tomcat session

本机ip为192.168.1.101 1、准备测试环境 两个Tomcat 在Eclipse中新建2个Servers&#xff0c;指定对应的Tomcat&#xff0c;端口号错开。 Tomcat1&#xff08;18005、18080、18009&#xff09; Tomcat2&#xff08;28005、28080、28009&#xff09; 一个Redis Redis下载官网&…

Fiddler抓包-只抓APP的请求

from:https://www.cnblogs.com/yoyoketang/p/6582437.html fiddler抓手机app的请求&#xff0c;估计大部分都会&#xff0c;但是如何只抓来自app的请求呢&#xff1f; 把来自pc的请求过滤掉&#xff0c;因为请求太多&#xff0c;这样会找不到重要的信息了。 环境准备&#xff1…