您好,登錄后才能下訂單哦!
1,我所使用到的python版本:企 娥:217 1793 408
2,下面編寫具體的極速賽車平臺搭建實現過程
import threading
import time
import Queue
#首先生成一個隊列
q =Queue.Queue()
#生產者
def producer(name):
l=threading.Rlock()
for i in range(40):
l.acquire()
q.put(i)
l.release()
print "this is thead name is %s ,produce num is %s" %(name,i)
time.sleep(2)
#消費者
def consumer(name):
count =0
while count <=20:
resulte =q.get()
print 'the thread name is %s and the consume num is %s' %(name,result)
time.sleep(4)
#測試
for i in range(10):
p = threading.Thread(target=producer,args=('xxxx',))
p.start()
c =threading.Thread(target=consumer,args=('yyyy',)) c.start()
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。