dequeue是什么意思,dequeue的意思翻译、用法、同义词、例句
常用词典
v. 使(计算机待处理数据项)出列
例句
Select Dequeue and then click Get message.
选择 Dequeue,然后单击 Get message。
Process must first dequeue a message to obtain the credit.
进程必须首先将一条信息出列去获得这个信任。
A pipe is composed of a queue and two file descriptors-one to enqueue data and the other to dequeue data.
管道由一个队列和两个文件描述符(一个用于数据入列,另一个用于数据出列)组成。
Messages are stored in queues, and MQ servers allow you to enqueue messages onto queues, and dequeue messages from them.
消息存储在队列里,MQ服务器允许您将消息加入到队列以及从队列中取走消息。
Note here that enqueue and dequeue task functions simply add or remove a task from the particular scheduling structures.
注意,将任务函数加入队列或脱离队列只需从特定调度结构中加入或移除任务。
同义词
vi.|break the ranks;出列
网络扩展资料
词性: 动词
发音: /ˌdiːˈkjuː/
定义: 从队列中移除元素,即把队列中的第一个元素删除并返回其值。
用法:
- The dequeue operation removes the oldest item from the queue.(dequeue操作将从队列中移除最旧的项目。)
- The program needs to dequeue the first item in the queue.(程序需要将队列中的第一个项目出队。)
解释: dequeue是一种常见的操作,用于从队列中移除第一个元素。它是队列数据结构的基本操作之一。在队列中,元素是按照先进先出(FIFO)的顺序排列的。因此,dequeue操作总是返回队列中最早添加的元素。
近义词: remove, pop
反义词: enqueue, push