Python的装饰器功能实例

前端之家收集整理的这篇文章主要介绍了Python的装饰器功能实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编来看看吧。
Python中的装饰器本质上是一个高阶函数,它接收一个函数,并且对这个函数进行包装,从而改变原函数的默认行为。

# 来自jb51.cc
@deco1(deco_arg)
@deco2
def func(): pass
相当于

# 来自jb51.cc
func = deco1(deco_arg)(deco2(func))
Demo如下:

# 来自jb51.cc
# -*-coding:utf-8 -*-
def decorator(str):
  print str
  def retfn(fn):
    def retfn(*arg):
      print '已装饰' # 装饰
      return fn(*arg) # 调用原始函数
    return retfn
  return retfn
 
@decorator("实例化装饰器")
def test(str0,str1):
  print str0,str1
 
test('Hello','world');
原文链接:https://www.f2er.com/python/527415.html

猜你在找的Python相关文章