十. Python基础(10)--装饰器

1 ● 装饰器

A decorator is a function that take a function as an argument and return a function.

We can use a decorator to extend the functionality of an existing function without changing its source.

Decorators are syntactic sugar.

装饰器是一个函数, 它接受一个函数作为实参并且返回一个函数.

我们可以用装饰器来扩充一个已经存在的函数的功能, 但又不修改其源码.

装饰器是一种语法糖(syntactic sugar).

※ The "@" symbol indicates to the parser that we're using a decorator while the decorator function name references a function by that name.


在计算机科学中,语法糖(syntactic sugar)是指编程语言中
可以更容易地
表达
一个操作
的语法


装饰器扩展至类:

A decorator in Python is any callable Python object that is used to modify a function or a class. A reference to a function "func" or a class "C" is passed to a decorator and the decorator returns a modified function or class. The modified functions or classes usually contain calls to the original function "func" or class "C".

 

2 ● 装饰器的模板

def wrapper(func): # wrapper是装饰器的名字

    def inner(*args, **kwargs):

        print("被装饰的函数执行之前你要做的事.")

        ret = func(*args, **kwargs) # 被装饰的函数执行, 返回值为None也写出来

        print("被装饰的函数执行之后你要做的事.")

        return ret # ret有可能是None, 并且没有变量接收

    return inner

 

@wrapper # 相当于welcome = wrapper(welcome)

def welcome(name): # welcome是被装饰的函数

    print('Welcome:%s!'%name)

 

@wrapper

def home(): # home是被装饰的函数

    print('欢迎来到home页!')

 

welcome("Arroz")

print("===============================")

home()

参见: http://blog.csdn.net/qq_34409701/article/details/51589736

def wrapper(func):

    def inner(*args, **kwargs):

        print("AAAAAAA")

        print(func(*args, **kwargs))

    return inner

 

@wrapper

def f1():

    return "f1"

 

f1()

 

'''

AAAAAAA

f1

'''

 

知识补充:

1 ● eval()函数

if name in locals():

    return eval(name)(*args)

※ name是函数名, 后面的形参需要和一般函数名一样带括号(*args)

 

2 ● 斐波那契数列停止的情况:

# ① 长度小于多少

'''

l=[1,1]

while len(l) < 20:

    l.append(l[-1]+l[-2])

    print(l)

'''

# ② 最后一个数小于多少

'''

l = [1,1]

while l[-1] < 40000:

    l.append(l[-1] + l[-2])

    print(l)

'''

 

十. Python基础(10)--装饰器的更多相关文章

  1. python基础—函数装饰器

    python基础-函数装饰器 1.什么是装饰器 装饰器本质上是一个python函数,它可以让其他函数在不需要做任何代码变动的前提下增加额外功能. 装饰器的返回值是也是一个函数对象. 装饰器经常用于有切 ...

  2. Day11 Python基础之装饰器(高级函数)(九)

    在python中,装饰器.生成器和迭代器是特别重要的高级函数   https://www.cnblogs.com/yuanchenqi/articles/5830025.html 装饰器 1.如果说装 ...

  3. [python基础]关于装饰器

    在面试的时候,被问到装饰器,在用的最多的时候就@classmethod ,@staticmethod,开口胡乱回答想这和C#的static public 关键字是不是一样的,等面试回来一看,哇,原来是 ...

  4. 1.16 Python基础知识 - 装饰器初识

    Python中的装饰器就是函数,作用就是包装其他函数,为他们起到修饰作用.在不修改源代码的情况下,为这些函数额外添加一些功能,像日志记录,性能测试等.一个函数可以使用多个装饰器,产生的结果与装饰器的位 ...

  5. 学习PYTHON之路, DAY 5 - PYTHON 基础 5 (装饰器,字符格式化,递归,迭代器,生成器)

    ---恢复内容开始--- 一 装饰器 1 单层装饰器 def outer(func): def inner(): print('long') func() print('after') return ...

  6. 【Python基础】装饰器的解释和用法

    装饰器的用法比较简单,但是理解装饰器的原理还是比较复杂的,考虑到接下来的爬虫框架中很多用到装饰器的地方,我们先来讲解一下. 函数 我们定义了一个函数,没有什么具体操作,只是返回一个固定值 请注意一下缩 ...

  7. python基础之 装饰器,内置函数

    1.闭包回顾 在学习装饰器之前,可以先复习一下什么是闭包? 在嵌套函数内部的函数可以使用外部变量(非全局变量)叫做闭包! def wrapper(): money =10 def inner(num) ...

  8. python基础-----函数/装饰器

    函数 在Python中,定义一个函数要使用def语句,依次写出函数名.括号.括号中的参数和冒号:,然后,在缩进块中编写函数体,函数的返回值用return语句返回. 函数的优点之一是,可以将代码块与主程 ...

  9. python基础之装饰器(实例)

    1.必备 #### 第一波 #### def foo(): print 'foo' foo #表示是函数 foo() #表示执行foo函数 #### 第二波 #### def foo(): print ...

随机推荐

  1. Asp.net core 学习笔记 ( DI 依赖注入 )

    比起 Angular 的依赖注入, core 的相对简单许多, 容易明白 所有 provider 都在 startup 里配置. public void ConfigureServices(IServ ...

  2. nodejs模拟http发送请求

    首先需要安装模块request,然后代码如下: //模拟发送http请求 var request = require("request"); //get请求 request('ht ...

  3. 环境变量LD_LIBRARY_PATH的传递

    http://bbs.chinaunix.net/thread-3680861-1-1.html execv明显没有传环境变量,execle或execve才会带在启动shell设置的LD_LIBRAR ...

  4. Dynamic Binding

    调用方法时,如何决定调用对象还是其父类的方法呢? 在JVM中,根据实际类型(actual type)调用.而非声明类型(declared type),如果实际类型的类中没有该方法,就会沿着inheri ...

  5. JavaScript 第二章总结

    Writing real code 设计程序的步骤 First, a high-level design and a flowchart more details Working through th ...

  6. Run-time code to create charts:

    tChart1.Series.Clear(); tChart1.Series.Add(new Steema.TeeChart.Styles.Bar());tChart1.Series[0].Clear ...

  7. vux, vue上拉加载更多

    <template> <" :bottom-method="loadBottom" :bottom-all-loaded="bottomAll ...

  8. LitePal 数据库使用方法(最新2.0LitePal数据库适用)

    转发郭神的blog,讲的非常详细,是基于1.6版本,但现在使用的是2.0,有点差别https://blog.csdn.net/guolin_blog/article/details/384612391 ...

  9. 两个约束下的dp问题

    洛谷P1510 分析:本质上还是一个01背包,将体力当做重量,体积当做价值.配上滚动数组 即dp[j]代表在体力耗费为j时最大能搬运多少体积的石头,当dp[j]>v时就说明存在满足情况的解,这样 ...

  10. 6月5 Smarty变量调节器

    变量调节器:<{$a|变量调节器}> 主要修改此页面的信息来了解变量调节器:test0605/main.php和模板文件:main0605.html 1.利用给定的变量调节器 capita ...