回调函数
Posted liangliangzz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回调函数相关的知识,希望对你有一定的参考价值。
‘‘‘
回调函数:可以将函数当做参数进行传递
将函数当做参数传递给另一个函数
‘‘‘
def fun1(x): print(x) x() def fun2(): print("fun2") # fun1(10) # fun1(1.1) # fun1([]) # fun1("hello") # 将fun2函数的返回值传递给fun1的参数 给x # fun1(fun2()) # 将fun2函数的地址值传递给x fun1(fun2)
以上是关于回调函数的主要内容,如果未能解决你的问题,请参考以下文章