回调函数

回调函数

python能实现回调函数吗?具体过程?

谢谢哈~
回调函数
你指递归?
你要怎样 callback? gui 的库里多的是。如果你指的是信号,查 signal 模块。
就像C语言里面的差不多的那种callback,能实现吗?c是用指针搞定的
我猜你的意思是传函数吧?

[Copy to clipboard] [ - ]
CODE:
#!/usr/bin/env python                                                                        

def f():
    print "hello world"

def g(x):
    x()

g(f)



QUOTE:
hello world



[Copy to clipboard] [ - ]
CODE:
def callback(x):
     print x

def scan(array, func):
     for i in array:
          func(i)

array = [1, 2, 3]
scan(array, callback)

的确简单~