📜  红宝石 |队列 clear()函数

📅  最后修改于: 2022-05-13 01:54:28.549000             🧑  作者: Mango

红宝石 |队列 clear()函数

clear()是 Ruby 中的一个内置函数,用于清除队列并使其大小再次为零。我们可以再次向它重新插入对象。

示例 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