手机
当前位置:查字典教程网 >脚本专栏 >python >python回调函数的使用方法
python回调函数的使用方法
摘要:有两种类型的回调函数:复制代码代码如下:blockingcallbacks(alsoknownassynchronouscallbackso...

有两种类型的回调函数:

复制代码 代码如下:

blocking callbacks (also known as synchronous callbacks or just callbacks)

deferred callbacks (also known as asynchronous callbacks)

那么,在python中如何实现回调函数呢,看代码:

复制代码 代码如下:

def my_callback(input):

print "function my_callback was called with %s input" % (input,)

def caller(input, func):

func(input)

for i in range(5):

caller(i, my_callback)

【python回调函数的使用方法】相关文章:

python创建只读属性对象的方法(ReadOnlyObject)

python类型强制转换long to int的代码

python二叉树遍历的实现方法

python实现的各种排序算法代码

python33 urllib2使用方法细节讲解

python连接sql server乱码的解决方法

python迭代器的使用方法实例

python的id()函数介绍

python实现系统状态监测和故障转移实例方法

python条件和循环的使用方法

精品推荐
分类导航