IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> Python装饰器 -> 正文阅读

[Python知识库]Python装饰器

装饰器定义

  • 装饰器指的定义一个函数,该函数是用来为其他函数添加额外的功能,就是拓展原来函数功能的一种函数
  • 在不修改被装饰器对象源代码以及调用方式的前提下为被装饰对象添加新功能,如增加函数的执行时间、为函数打印日志等

装饰器分类

Python内置装饰器

  • staticmethod:把类中的方法定义为静态方法,使用staticmethod装饰的方法可以使用类或者类的实例对象来调用,不需要传入self
class Human(object):
    """docstring for Human"""
    def __init__(self):
        super(Human, self).__init__()
 
    @staticmethod
    def say(message):
        if not message:
            message = 'hello'
        print(f'I say {message}')
 
    def speak(self, message):
        self.say(message)
 
Human.say(None)
human = Human()
human.speak('hi')
  • classmethod:把类中的方法定义为类方法,使用classmethod装饰的方法可以使用类或者类的实例对象来调用,并将该class对象隐式的作为第一个参数传入
class Human(object):
    """docstring for Human"""
    def __init__(self):
        super(Human, self).__init__()
        self.message = '111'
 
    def say(message):
        if not message:
            message = 'hello'
        print(f'I say {message}')
 
    @classmethod
    def speak(cls, message):
        if not message:
            message = 'hello'
        cls.say(message)
 
 
human = Human()
human.speak('hi')
  • property:把方法变成属性
class Human(object):
    """docstring for Human"""
    def __init__(self, value):
        super(Human, self).__init__()
        self._age = value
 
    @property
    def age(self):
        return self._age
 
human = Human(20)
print(human.age)

无参数的装饰器

import datetime
import time
 
def calc_spend_time(func):
    def new_func(*args, **kargs):
        start_time = datetime.datetime.now()
        result = func(*args, **kargs)
        end_tiem = datetime.datetime.now()
        print(f"result: {result}, used: {(end_tiem - start_time).microseconds} s")
    return new_func
 
@calc_spend_time
def calc_add(a, b):
    time.sleep(10)
    return a + b


# 实现日志打印
def print_log(func):
    """日志装饰器"""
    def inner(*args, **kwargs):
        print(f"方法{func.__name__}的参数是:{args, kwargs}")
        return func(*args, **kwargs)
    return inner

@print_log
def test_1(a, b):
    return a + b

print(test_1(4, 5))

带参数的装饰器

import datetime
 
def calc_spend_time(author):
    def first_deco(func):
        def new_func(*args, **kargs):
            start_time = datetime.datetime.now()
            result = func(*args, **kargs)
            end_tiem = datetime.datetime.now()
            print(f"result: {result}, used: {(end_tiem - start_time).microseconds} s")
        return new_func
    return first_deco
 
 
@calc_spend_time('author_1')
def calc_add(a, b):
    return a + b
 
 
@calc_spend_time('author_2')
def calc_diff(a, b):
    return a - b
 
calc_add(a=1, b=2)
calc_diff(1, 2)

彩蛋

被装饰器装饰过的函数除了上面发生的变化之外还有什么变化?怎么解决呢?

会导致函数名发生变化,解决如下:

方法一:
# 使用__name__重新赋值
def set_func(func):
    def call_func(*args, **kwargs):
        print('')
        return func(*args, **kwargs)
    call_func.__name__ = func.__name__
    return call_func

@set_func
def test_2():
    print('name test')


print(test_2.__name__)
方法二:
# 使用functools.wrap()

import functools

def set_func(func):
    @functools.wraps(func)
    def call_func(*args, **kwargs):
        print('')
        return func(*args, **kwargs)
    return call_func

@set_func
def test_3():
    print('name test')


print(test_3.__name__)
如有其他疑问欢迎评论,共同学习,加油~
  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-02-26 11:26:58  更:2022-02-26 11:28:40 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 0:40:49-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码