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


Ruby Queue empty?用法及代码示例


空吗? Ruby中的内置函数是检查队列是否为空?它返回一个布尔值,如果Queue为空或返回false,则为true。

用法:q_name.empty?

参数:该函数不包含任何元素。


返回值:如果队列为空,则返回true,否则返回false。

例子1

#Ruby program for empty ? function in Queue 
  
#Create a new QUEUE q1 
q1 = Queue.new
  
#push 5 
     q1.push(5) 
  
#push 6 
         q1.push(6) 
  
#Checks if the queue is empty or not 
             puts q1.empty 
    ? 
  
#Clears the queue 
    q1.clear() 
  
#Checks if the queue is empty or not 
        puts q1.empty 
    ?

输出

false
true

例子2

#Ruby program for empty ? function in Queue 
  
#Create a new QUEUE q1 
q1 = Queue.new
  
#Checks if the queue is empty or not 
     puts q1.empty 
    ?

输出

true

参考:https://devdocs.io/ruby~2.5/queue#method-i-clear



相关用法


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