當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。