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


Ruby Queue closed?用法及代码示例


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

用法:q_name.closed?

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


返回值:如果队列关闭,则返回true,否则返回false。

例子1

#Ruby program for closed ? 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 closed or not 
             puts q1.empty 
    ? 
  
#Close the queue 
    q1.close() 
  
#Checks if the queue is closed or not 
        puts q1.closed 
    ?

输出

false
true

例子2

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

输出

closed

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



相关用法


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