当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Queue clear()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Queue clear() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。