用法:
class queue.PriorityQueue(maxsize=0)
优先级队列的构造函数。
maxsize
是一个整数,用于设置可放入队列中的项目数的上限。一旦达到这个大小,插入将被阻塞,直到队列项目被消耗。如果maxsize
小于或等于零,则队列大小是无限的。首先检索最低值的条目(最低值的条目是
sorted(list(entries))[0]
返回的条目)。条目的典型模式是以下形式的元组:(priority_number, data)
。如果
data
元素不可比较,则可以将数据包装在忽略数据项并仅比较优先级编号的类中:from dataclasses import dataclass, field from typing import Any @dataclass(order=True) class PrioritizedItem: priority: int item: Any=field(compare=False)
相关用法
- Python cudf.core.column.string.StringMethods.is_vowel用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python pandas.arrays.IntervalArray.is_empty用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python numpy.less()用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python Sympy Permutation.list()用法及代码示例
- Python dask.dataframe.Series.apply用法及代码示例
- Python scipy.ndimage.binary_opening用法及代码示例
- Python pyspark.pandas.Series.dropna用法及代码示例
- Python torchaudio.transforms.Fade用法及代码示例
- Python dask.dataframe.to_records用法及代码示例
- Python pyspark.pandas.groupby.SeriesGroupBy.unique用法及代码示例
- Python distributed.protocol.serialize.register_generic用法及代码示例
- Python numpy.polynomial.hermite.hermmul用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python dask.dataframe.DataFrame.applymap用法及代码示例
- Python tf.summary.scalar用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 queue.PriorityQueue。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。