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


Ruby Queue new()用法及代码示例


new()是Ruby中的内置函数,可创建一个具有给定名称的新队列。

用法:q_name = Queue.new()

参数:该函数不带任何参数。


返回值:它创建一个新队列。

例子1

#Ruby program for new () function in Queue 
  
#Create a new QUEUE q1 
q1 = Queue.new
  
#pushes 5 
     q1.enq(5) 
  
#Create a new QUEUE q2 
         q2 
    = Queue.new
  
#pushes 15 
      q2.enq(15) 
  
#pushes 16 
          q2.enq(16) 
  
#Prints the length of q1 
              puts q1.length 
  
#Prints the length of q2 
                  puts q2.length

输出

1
2

例子2

#Ruby program for new () function in Queue 
  
#Create a new QUEUE q1 
q1 = Queue.new
  
#Create a new QUEUE q2 
     q2 
    = Queue.new
  
#Prints the length of q1 
      puts q1.length 
  
#Prints the length of q2 
          puts q2.length

输出

0
0

参考:https://devdocs.io/ruby~2.5/queue#method-c-new



相关用法


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