当long函数耗时较长时,需要程序先向下执行,这就需要异步,改写代码如下:
import _thread
import time
def long(cb):
print ('long execute')
def fun(callback):
time.sleep(5)
result = 'long end'
callback(result)
_thread.start_new_thread(fun,(cb,))
def on_long_finsh(result):
print (result)
def first():
print ('first execute')
long(on_long_finsh)
print ('fisrt end')
def second():
print ('second execute')
time.sleep(2)
print ('second end')
def main():
first()
second()
if __name__=='__main__':
main()
回调函数作为参数传递给耗时较长的代码所在的函数,在新线程执行耗时较长的代码,执行完之后把数据传递给回调函数,再进行处理。