python - 为什么在 Python 中使用线程和队列时需要无限循环

标签 python

我试图了解如何使用线程,我在 http://www.ibm.com/developerworks/aix/library/au-threadingpython/ 看到了这个很好的例子

      #!/usr/bin/env python
      import Queue
      import threading
      import urllib2
      import time

      hosts = ["http://yahoo.com", "http://google.com", "http://amazon.com",
      "http://ibm.com", "http://apple.com"]

      queue = Queue.Queue()

      class ThreadUrl(threading.Thread):
      """Threaded Url Grab"""
        def __init__(self, queue):
          threading.Thread.__init__(self)
          self.queue = queue

        def run(self):
          while True:
            #grabs host from queue
            host = self.queue.get()

            #grabs urls of hosts and prints first 1024 bytes of page
            url = urllib2.urlopen(host)
            print url.read(1024)

            #signals to queue job is done
            self.queue.task_done()

      start = time.time()
      def main():

        #spawn a pool of threads, and pass them queue instance 
        for i in range(5):
          t = ThreadUrl(queue)
          t.setDaemon(True)
          t.start()

       #populate queue with data   
          for host in hosts:
            queue.put(host)

       #wait on the queue until everything has been processed     
       queue.join()

      main()
      print "Elapsed Time: %s" % (time.time() - start)

我不明白的部分是为什么 run 方法有一个无限循环:

        def run(self):
          while True:
            ... etc ...

为了开玩笑,我在没有循环的情况下运行了程序,看起来它运行良好! 那么有人可以解释为什么需要这个循环吗? 还有,没有 break 语句,循环是如何退出的?

最佳答案

是否希望线程执行多个作业?如果没有,则不需要循环。如果是这样,您需要一些能够让它做到这一点的东西。循环是一种常见的解决方案。您的示例数据包含五个作业,程序启动五个线程。所以您不需要在这里做不止一项工作的任何线程。不过,请尝试为您的工作负载再添加一个 URL,看看会发生什么变化。

关于python - 为什么在 Python 中使用线程和队列时需要无限循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14493915/

相关文章:

python - 在 SQLAlchemy 中使用反射表检索列的最大值

python - pandas 根据单元格内容删除行,没有标题

python mock assert_call_with

python - Pandas,仅合并同一组中的行

python - 将查询集数据传递给另一个查询 django

python - 使用 python 查找 HTML 标签

python - 显示 wtforms SelectMultipleField 显示为下拉列表而不是列表

python - 在 python 中重载 [] 运算符?

python - 从 html 表中抓取数据,选择标题之间的元素

python virtualenv 无法访问主目录中的文件