Python 实现异步调用函数

匿名 (未验证) 提交于 2019-12-02 22:54:36

async_call.py

#coding:utf-8 from threading import Thread  def async_call(fn):     def wrapper(*args, **kwargs):         Thread(target=fn, args=args, kwargs=kwargs).start()      return wrapper

test.py

from time import sleep from async_call import async_call  class AA:     @async_call     def hello( self ):         self.__count += 1         print(int(time.()))         sleep(2)         print(int(time.()))         return  if __name__ == "__main__":      AA().hello() 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!