Ruby 队列 close() 函数
close() 是Ruby中的一个内置函数,它永久地关闭了队列,不允许在其中进行任何推送或弹出操作。关闭的队列不能重新打开。
语法 :q_name.close()
参数 :该函数不需要任何元素。
返回值 :它关闭了队列并且不返回任何东西。
例子 1 :
#Ruby program for close() function in Queue
#Create a new QUEUE q1
q1 = Queue.new
#push 5
q1.push(5)
#push 6
q1.push(6)
#Prints the element
puts q1.pop
#Closed the queue
q1.close()
#check if closed or not
puts q1.closed
?
输出:
5
true
例2 :
#Ruby program for close() function in Queue
#Create a new QUEUE q1
q1 = Queue.new
#push 5
q1.push(12)
#Closed the queue
q1.close()
#check if closed or not
puts q1.closed
?
输出:
true
参考资料 : https://devdocs.io/ruby~2.5/queue#method-i-close