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

进程间通信-队列

时间:2020-03-22 01:23:42      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:code   rgs   else   time   als   sleep   thread   print   col   

#进程间通信,队列
from multiprocessing import  Process,Queue
import os,sys
import time

q=Queue()
def get(data):
    time.sleep(2)
    print("thread {} get {}".format(os.getpid(),data))

if __name__=="__main__":
    start=time.time()
    l=[]
    for i in range(10):
        p=q.put(i)
    print(q.qsize(),os.getpid(),q.empty())
    while True:
        if q.empty() == False:
            p=Process(target=get,args=(q.get(),))
            l.append(p)
            p.start()
        else:
            break
    for i in l:
        i.join()

    end=time.time()
    print(end-start)
10 12072 False
thread 7140 get 3
thread 14184 get 1
thread 4468 get 0
thread 15604 get 2
thread 12988 get 4
thread 7700 get 5
thread 17272 get 7
thread 10700 get 6
thread 13112 get 8
thread 15756 get 9
2.7655727863311768

 

进程间通信-队列

标签:code   rgs   else   time   als   sleep   thread   print   col   

原文地址:https://www.cnblogs.com/pfeiliu/p/12543548.html

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