python的线程池使用

from concurrent.futures import ThreadPoolExecutor
import time


def say_hello(a, s):
    print("hello: "+a)
    print(s)
    time.sleep(4)
    return {"code": 111}


def main():
    seed=["a","b","c", "d"]
    start2=time.time()
    future = {}
    # 创建包含3个线程的线程池
    executor = ThreadPoolExecutor(3)
    for each in seed:
        # 提交任务到线程池
        a = executor.submit(say_hello, each, 4)
        # 保存提交后返回的对象用来查询结果(A Future representing the given call)
        future[each] = a
    # shutdown用来保证不会在向线程池中新增任务,其内参数为False表示不会等待线程池内任务结束,直接返回(常用于不需要返回结果时),参数为True时(默认为True),会等待线程池内任务执行完毕才会继续向下走
    executor.shutdown(False)
    # 当使用future["a"].result()时,无论shutdown内参数是True还是False,都会阻塞至直到该任务执行完.
    # result()内的数字为超时时间,单位是s,默认值为None,无超时时间
    print(future["a"].result(5))
    end2=time.time()
    print("time2: "+str(end2-start2))
    return


if __name__ == '__main__':
    main()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值