📜  红宝石 |大小队列为空?函数

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

红宝石 |大小队列为空?函数

空的?是 Ruby 中的一个内置函数,用于检查 SizedQueue 是否为空?它返回一个布尔值,如果 SizedQueue 为空,则返回 true,否则返回 false。这里的空意味着它是否包含元素。

示例 1

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

输出

false
true

示例 2

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

输出

true

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