Python Threading 實現簡單的異步

本文是用消息隊列配合輔助線程完成異步功能。 隊列傳輸能夠是任何數據類型,能夠靈活使用。python import queue import threading Q = queue.Queue() def send( msg ): Q.put( msg ) def recv(): while True: msg = Q.get() print(
相關文章
相關標籤/搜索