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