Python笔记
🗒️装饰器
00 分钟
2021-7-2
2023-12-30
type
status
date
slug
summary
tags
category
icon
学习进度
  • 装饰器就是使用创建一个闭包函数,在闭包函数内调用目标函数。可以达到不改动目标函数的同时,增加额外的功能。
 
  • 最基础的写法
notion image
  • 装饰器的一般写法(闭包写法)
notion image
  • 最简约标准的装饰器写法。
notion image