📜  红宝石 |队列空了?函数

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

红宝石 |队列空了?函数

空的?是 Ruby 中的一个内置函数,用于检查队列是否为空?它返回一个布尔值,如果 Queue 为空,则返回 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