码迷,mamicode.com
首页 > 系统相关 > 详细

进程池

时间:2018-05-07 15:27:01      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:call   bsp   code   join()   div   回调函数   syn   imp   multi   

import time
from multiprocessing import Process,Pool

def Foo(i):
    time.sleep(1)
    print(i)

def Bar(arg):
    print(hello)


if __name__ == __main__:
    pool = Pool(5) #进程池的容量是5

    for i in range(100):
        pool.apply_async(func=Foo,args=(i,),callback=Bar) #callback是回调函数 

    pool.close()
    pool.join()

    print(end---)

 

进程池

标签:call   bsp   code   join()   div   回调函数   syn   imp   multi   

原文地址:https://www.cnblogs.com/lhqlhq/p/9002780.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!