size()是Ruby中的內置函數,它返回SizedQueue的當前大小或其中存在的對象數。
用法:sq_name.size()
參數:該函數不帶任何參數。
返回值:它返回SizedQueue中的元素數。
例子1:
#Ruby program for size() function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(2)
#pushes 5
sq1.enq(5)
#pushes 6
sq1.enq(6)
#Prints the size
puts sq1.size
#Pops the element
sq1.pop
#Prints the size
puts sq1.size
輸出:
2 1
例子2:
#Ruby program for size() function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(3)
#Prints the size
puts sq1.size
#pushes 5
sq1.enq(5)
#pushes 6
sq1.enq(6)
#pushes 7
sq1.enq(7)
#Prints the size
puts sq1.size
#Pops the element
sq1.pop
#Prints the size
puts sq1.size
輸出:
0 3 2
參考:https://devdocs.io/ruby~2.5/sizedqueue#method-i-size
相關用法
- Ruby SizedQueue enq()用法及代碼示例
- Ruby SizedQueue max=用法及代碼示例
- Ruby SizedQueue pop()用法及代碼示例
- Ruby SizedQueue max()用法及代碼示例
- Ruby SizedQueue new()用法及代碼示例
- Ruby SizedQueue deq()用法及代碼示例
- Ruby SizedQueue shift()用法及代碼示例
- Ruby SizedQueue push()用法及代碼示例
- Ruby SizedQueue empty?用法及代碼示例
- Ruby SizedQueue close()用法及代碼示例
- Ruby SizedQueue clear()用法及代碼示例
- Ruby SizedQueue length()用法及代碼示例
- Ruby Set size()用法及代碼示例
- Ruby Queue size()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | SizedQueue size() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。