当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Queue 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



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Queue shift() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。