红宝石 |队列 pop()函数
pop()是 Ruby 中的一个内置函数,它返回队列前面的元素并将其从队列中移除。
Syntax: q_name.pop()
Parameters: The function does not takes any element.
Return Value: It returns the first element which is at the front of the queue and removes it from the queue.
示例 1 :
#Ruby program for pop() function in Queue
#Create a new QUEUE q1
q1 = Queue.new
#push 5
q1.push(5)
#push 6
q1.push(6)
#Prints the top - most element and also pops it
puts q1.pop
puts q1.pop
输出:
5
6
示例 2 :
#Ruby program for pop function in Queue
#Create a new QUEUE q1
q1 = Queue.new
#push 12
q1.push(12)
#push 21
q1.push(21)
#Prints the top - most element and also pops it
puts q1.pop
puts q1.pop
输出:
12
21
参考:https://devdocs.io/ruby~2.5/queue#method-i-pop