Ruby 队列 shift()函数

Ruby 队列 shift()函数

shift() 是Ruby中的一个内置函数,它返回队列中最前面的元素并将其从队列中删除。

语法 :q_name.shift()

参数 :该函数不需要任何元素。

返回值 :它返回在队列前面的第一个元素,并将其从队列中删除。

例子 1 :

#Ruby program for shift() 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 shifts it
             puts q1.shift
  
                 puts q1.shift

输出:

5
6

例2 :

#Ruby program for shift 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 shifts it
             puts q1.shift
  
                 puts q1.shift

输出:

12
21

参考资料 : https://devdocs.io/ruby~2.5/queue#method-i-shift

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程