當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。