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


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


push()是Ruby中的內置函數,可將元素插入SizedQueue。

用法:sq_name.push(element)

參數:該函數采用要插入到SizedQueue中的元素。


返回值:將元素插入SizedQueue。

例子1

#Ruby program for push() function in SizedQueue 
  
#Create a new SizedQueue q1 
sq1 = SizedQueue.new(2) 
  
#push 5 
          sq1.push(5) 
  
#push 6 
              sq1.push(6) 
  
#Prints the element 
                  puts sq1.pop 
                      puts sq1.pop

輸出

5
6

例子2

#Ruby program for push() function in SizedQueue 
  
#Create a new SizedQueue q1 
sq1 = SizedQueue.new(2) 
  
#push 10 
          sq1.push(10) 
  
#push 12 
              sq1.push(12) 
  
#Prints the element 
                  puts sq1.pop 
  
#Again pushes 13 
                      sq1.push(13) 
  
#Prints the element 
                          puts sq1.pop 
  
#Prints the element 
                              puts sq1.pop

輸出

10
12
13

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



相關用法


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