首页 > 编程语言 > 详细

装饰器练习——Python

时间:2018-07-09 22:23:22      阅读:231      评论:0      收藏:0      [点我收藏+]

Demo1:

def add():
    return 1+1

def sub():
    return 2-1

print(add())
print(sub())

Demo2:

def add():
    return 1+1

def sub():
    return 2-1

print(add())
print(sub())

Demo3:

def add():
    return 1+1

def sub():
    return 2-1

print(add())
print(sub())

Demo4:

def printLine(func):
    def f():
        print("-----------")
        return func()
    return f

@printLine
def add():
    return 1+1

@printLine
def sub():
    return 2-1


print(add())
print(sub())

 

装饰器练习——Python

原文:https://www.cnblogs.com/Exesoft-Mike/p/9286397.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!