new()是Ruby中的內置函數,將創建一個具有給定名稱的新SizedQueue。
用法:q_name = SizedQueue.new()
參數:該函數不帶任何參數。
返回值:它創建一個新的SizedQueue。
例子1:
#Ruby program for new () function in SizedQueue
#Create a new SizedQueue sq1
sq1 = SizedQueue.new(1)
#pushes 5
sq1.enq(5)
#Create a new SizedQueue sq2
sq2
= SizedQueue.new(2)
#pushes 15
sq2.enq(15)
#pushes 16
sq2.enq(16)
#Prints the length of sq1
puts sq1.length
#Prints the length of sq2
puts sq2.length
輸出:
1 2
例子2:
#Ruby program for new () function in SizedQueue
#Create a new SizedQueue sq1
sq1 = SizedQueue.new(10)
#Create a new SizedQueue sq2
sq2
= SizedQueue.new(19)
#Prints the length of sq1
puts sq1.length
#Prints the length of sq2
puts sq2.length
輸出:
0 0
參考: https://devdocs.io/ruby~2.5/sizedqueue#method-c-new
相關用法
- Ruby SizedQueue max()用法及代碼示例
- Ruby SizedQueue max=用法及代碼示例
- Ruby SizedQueue pop()用法及代碼示例
- Ruby SizedQueue enq()用法及代碼示例
- Ruby SizedQueue deq()用法及代碼示例
- Ruby SizedQueue length()用法及代碼示例
- Ruby SizedQueue clear()用法及代碼示例
- Ruby SizedQueue close()用法及代碼示例
- Ruby SizedQueue empty?用法及代碼示例
- Ruby SizedQueue shift()用法及代碼示例
- Ruby SizedQueue push()用法及代碼示例
- Ruby SizedQueue size()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | SizedQueue new() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。