Queue
これは、モジュールのテストに使用しているスクリプトです。
from Queue import Queue
from threading import Thread
def worker(fruit_queue):
while True:
fruit = fruit_queue.get()
print 'A fruit: ' + fruit
fruit_queue.task_done()
def main():
fruits = ['apple', 'orange', 'kiwi', 'banana', 'plum',
'grape', 'mango', 'cherry', 'lime', 'lemon']
fruit_queue = Queue()
print 'Printing fruits...'
for fruit in fruits:
fruit_queue.put(fruit)
for i in range(2):
t = Thread(target=worker(fruit_queue))
t.daemon = True
t.start()
fruit_queue.join()
print 'Finished!'
if __name__ == '__main__':
main()
これは機能し、2つのスレッドを作成し、各fruits
アイテムを1回印刷fruit_queue.join()
しますが、終了メッセージFinished!
が印刷されないため、続行されないようです。
$ python fruit.py
Printing fruits...
A fruit: apple
A fruit: orange
A fruit: kiwi
A fruit: banana
A fruit: plum
A fruit: grape
A fruit: mango
A fruit: cherry
A fruit: lime
A fruit: lemon
最初はよくわからなかったので関数に追加global fruit_queue
しましたが、実行するとわかりました。worker()
SyntaxError: name 'fruit_queue' is local and global
私がここで間違っていることを誰かが見ていますか?