标签: python multithreading thread-safety threadpool
threads_data = [[1,2],[3,4]] pool = ThreadPool(2) result_list = pool.map(sum, threads_data) pool.close() pool.join()
有时 result_list 是错误的[3,3]而不是[3,7] 所以结果是混合的 - 第一个线程的回答被返回两次。 请问如何解决?