Ruby 队列 clear()函数
clear() 是Ruby中的一个内置函数,它清除了队列并使其大小恢复为零。我们可以重新向它插入对象。
语法 :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