之前有个需求需要用到Python多线程,但同时又需要获得线程执行函数后的情况,然而Python多线程并没有提供返回线程值的方法,因此需要通过其他的渠道来解决这个问题,查阅了相关资料,获取线程返回值的方法大致有如下三种,分别如下
- ret_values = []
-
- def thread_func(*args):
- ...
- value = ...
- ret_values.append(value)
Python列表的append()方法是线程安全的,在CPython中,GIL防止对列表并发访问,如果使用自定义的数据结构,在并发修改数据的地方需要添加线程锁。
如果确定线程的数量,可以定义一个固定长度的列表,然后根据索引来存放返回值,比如:
- from threading import Thread
-
- threads = [None] * 10
- results = [None] * 10
-
- def foo(bar, result, index):
- result[index] = f"foo-{index}"
-
- for i in range(len(threads)):
- threads[i] = Thread(target=foo, args=('world!', results, i))
- threads[i].start()
-
- for i in range(len(threads)):
- threads[i].join()
-
- print (" ".join(results))
默认的 thread.join() 方法只是等待线程函数结束,没有返回值,我们可以在此处返回函数的运行结果,当调用thread.join()等线程结束后,也就获得了线程的返回值,代码如下:
- from threading import Thread
-
-
- def foo(arg):
- return arg
-
-
- class ThreadWithReturnValue(Thread):
- def run(self):
- if self._target is not None:
- self._return = self._target(*self._args, **self._kwargs)
-
- def join(self):
- super().join()
- return self._return
-
-
- T = ThreadWithReturnValue(target=foo, args=("hello world",))
- T.start()
- print(T.join()) # 此处会打印 hello world。
前两种方式较为普通(低级),Python 的标准库 concurrent.futures 提供更高级的线程操作,可以直接获取线程的返回值,相当优雅,代码如下:
- import concurrent.futures
-
-
- def foo(bar):
- return bar
-
-
- with concurrent.futures.ThreadPoolExecutor(max_workers=10) as executor:
- to_do = []
- for i in range(10): # 模拟多个任务
- future = executor.submit(foo, f"hello world! {i}")
- to_do.append(future)
-
- for future in concurrent.futures.as_completed(to_do): # 并发执行
- print(future.result())
某次运行的结果如下:
- hello world! 8
- hello world! 3
- hello world! 5
- hello world! 2
- hello world! 9
- hello world! 7
- hello world! 4
- hello world! 0
- hello world! 1
- hello world! 6