clear()是Ruby中的內置函數,可清除隊列並使其大小再次為零。我們可以將re-insert對象再次添加到它。
用法:q_name.clear()
參數:該函數不包含任何元素。
返回值:它清除隊列,不返回任何內容。
例子1:
#Ruby program for clear() function in Queue
#Create a new QUEUE q1
q1 = Queue.new
#push 5
q1.push(5)
#push 6
q1.push(6)
#Prints the element
puts q1.pop
#Clears the queue
q1.clear()
#Prints the size
puts q1.length
輸出:
5 0
例子2:
#Ruby program for clear() function in Queue
#Create a new QUEUE q1
q1 = Queue.new
#push 5
q1.push(12)
#Closed the queue
q1.clear()
#check if closed or not
puts q1.size
輸出:
0
參考:https://devdocs.io/ruby~2.5/queue#method-i-clear
相關用法
- Ruby Set clear()用法及代碼示例
- Ruby Hash clear()用法及代碼示例
- Ruby StringScanner clear用法及代碼示例
- Ruby SizedQueue clear()用法及代碼示例
- Ruby Queue deq()用法及代碼示例
- Ruby Queue enq()用法及代碼示例
- Ruby Queue pop()用法及代碼示例
- Ruby Queue new()用法及代碼示例
- Ruby Queue shift()用法及代碼示例
- Ruby Queue push()用法及代碼示例
- Ruby Queue close()用法及代碼示例
- Ruby Queue closed?用法及代碼示例
- Ruby Queue size()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Queue clear() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。