装饰器
普通装饰器
修饰符号:@
本质是闭包
https://www.runoob.com/w3cnote/python-func-decorators.html
多层装饰器
顺序为从下至上
带参装饰器
内置装饰器
@property
将方法转换为相同名称的只读属性
1 | class dataset(object): |
修饰符号:@
本质是闭包
https://www.runoob.com/w3cnote/python-func-decorators.html
顺序为从下至上
将方法转换为相同名称的只读属性
1 | class dataset(object): |