Ruby 队列 empty?函数
empty? 是Ruby中的一个内置函数,用于检查队列是否为空。它返回一个布尔值,如果队列是空的,该值为真,否则返回假。
语法 :q_name.empty?
参数 :该函数不需要任何元素。
返回值 :如果队列是空的,它返回真,否则返回假。
例子 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