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