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


Ruby SizedQueue max()用法及代碼示例


max()是Ruby中的內置函數,返回SizedQueue的最大大小。它返回用於初始化隊列的大小。

用法:sq_name.max()

參數:該函數不帶任何參數。


返回值:它返回SizedQueue的大小。

例子1

#Ruby program for max() function in SizedQueue 
  
#Create a new SizedQueue q1 
sq1 = SizedQueue.new(3) 
  
#pushes 5 
          sq1.enq(5) 
  
#pushes 6 
              sq1.enq(6) 
  
#Prints the max size 
                  puts sq1.max 
  
#Pops the element 
                      sq1.pop 
  
#Prints the max size 
                          puts sq1.max

輸出

3
3

例子2

#Ruby program for max() function in SizedQueue 
  
#Create a new SizedQueue q1 
sq1 = SizedQueue.new(6) 
  
#pushes 5 
          sq1.enq(5) 
  
#pushes 6 
              sq1.enq(6) 
  
#pushes 7 
                  sq1.enq(7) 
  
#Prints the length 
                      puts sq1.max 
  
#Pops the element 
                          sq1.pop 
  
#Prints the length 
                              puts sq1.max

輸出

6
6

參考: https://devdocs.io/ruby~2.5/sizedqueue#method-i-max



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | SizedQueue max() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。