<i id='gci69'><tr id='gci69'><dt id='gci69'><q id='gci69'><span id='gci69'><b id='gci69'><form id='gci69'><ins id='gci69'></ins><ul id='gci69'></ul><sub id='gci69'></sub></form><legend id='gci69'></legend><bdo id='gci69'><pre id='gci69'><center id='gci69'></center></pre></bdo></b><th id='gci69'></th></span></q></dt></tr></i><div id='gci69'><tfoot id='gci69'></tfoot><dl id='gci69'><fieldset id='gci69'></fieldset></dl></div>

  • <tfoot id='gci69'></tfoot>

    <small id='gci69'></small><noframes id='gci69'>

        <legend id='gci69'><style id='gci69'><dir id='gci69'><q id='gci69'></q></dir></style></legend>
          <bdo id='gci69'></bdo><ul id='gci69'></ul>
      1. Python 可迭代队列

        Python iterable Queue(Python 可迭代队列)

            <tfoot id='qX6hF'></tfoot>

            <small id='qX6hF'></small><noframes id='qX6hF'>

            1. <i id='qX6hF'><tr id='qX6hF'><dt id='qX6hF'><q id='qX6hF'><span id='qX6hF'><b id='qX6hF'><form id='qX6hF'><ins id='qX6hF'></ins><ul id='qX6hF'></ul><sub id='qX6hF'></sub></form><legend id='qX6hF'></legend><bdo id='qX6hF'><pre id='qX6hF'><center id='qX6hF'></center></pre></bdo></b><th id='qX6hF'></th></span></q></dt></tr></i><div id='qX6hF'><tfoot id='qX6hF'></tfoot><dl id='qX6hF'><fieldset id='qX6hF'></fieldset></dl></div>
            2. <legend id='qX6hF'><style id='qX6hF'><dir id='qX6hF'><q id='qX6hF'></q></dir></style></legend>
              • <bdo id='qX6hF'></bdo><ul id='qX6hF'></ul>

                    <tbody id='qX6hF'></tbody>
                  本文介绍了Python 可迭代队列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我需要知道队列何时关闭并且不会有更多项目,以便我可以结束迭代.

                  I need to know when a Queue is closed and wont have more items so I can end the iteration.

                  我通过在队列中放置一个哨兵来做到这一点:

                  I did it by putting a sentinel in the queue:

                  from Queue import Queue
                  
                  class IterableQueue(Queue): 
                  
                      _sentinel = object()
                  
                      def __iter__(self):
                          return self
                  
                      def close(self):
                          self.put(self._sentinel)
                  
                      def next(self):
                          item = self.get()
                          if item is self._sentinel:
                              raise StopIteration
                          else:
                              return item
                  

                  鉴于这是队列的一种非常常见的用途,难道没有任何内置实现吗?

                  Given that this is a very common use for a queue, isn't there any builtin implementation?

                  推荐答案

                  sentinel 是生产者发送没有更多队列任务即将到来的消息的合理方式.

                  A sentinel is a reasonable way for a producer to send a message that no more queue tasks are forthcoming.

                  FWIW,您的代码可以使用 iter():

                  FWIW, your code can be simplified quite a bit with the two argument form of iter():

                  from Queue import Queue
                  
                  class IterableQueue(Queue): 
                  
                      _sentinel = object()
                  
                      def __iter__(self):
                          return iter(self.get, self._sentinel)
                  
                      def close(self):
                          self.put(self._sentinel)
                  

                  这篇关于Python 可迭代队列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)
                  Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)
                  Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)
                  Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)
                  Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)
                  Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)

                • <tfoot id='n6vE4'></tfoot>

                  <i id='n6vE4'><tr id='n6vE4'><dt id='n6vE4'><q id='n6vE4'><span id='n6vE4'><b id='n6vE4'><form id='n6vE4'><ins id='n6vE4'></ins><ul id='n6vE4'></ul><sub id='n6vE4'></sub></form><legend id='n6vE4'></legend><bdo id='n6vE4'><pre id='n6vE4'><center id='n6vE4'></center></pre></bdo></b><th id='n6vE4'></th></span></q></dt></tr></i><div id='n6vE4'><tfoot id='n6vE4'></tfoot><dl id='n6vE4'><fieldset id='n6vE4'></fieldset></dl></div>
                  • <bdo id='n6vE4'></bdo><ul id='n6vE4'></ul>

                      <small id='n6vE4'></small><noframes id='n6vE4'>

                      <legend id='n6vE4'><style id='n6vE4'><dir id='n6vE4'><q id='n6vE4'></q></dir></style></legend>
                            <tbody id='n6vE4'></tbody>