python 多线程获取函数返回值
继承threading.Thread类,添加get_result方法
def strTest(strName):
strText = strName + " test"
print("strTest func....")
return strText, strName
class MyThread(threading.Thread):
def __init__(self, func, args):
super().__init__()
se
原创
2021-05-08 10:40:12 ·
338 阅读 ·
0 评论