红宝石 |队列 clear()函数
clear()是 Ruby 中的一个内置函数,用于清除队列并使其大小再次为零。我们可以再次向它重新插入对象。
Syntax: q_name.clear()
Parameters: The function does not takes any element.
Return Value: It clears the queue and does not returns anything.
示例 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