红宝石 |队列关闭()函数
close()是 Ruby 中的一个内置函数,它永久关闭队列,并且不允许在其中进行任何推送或弹出操作。已关闭的队列无法重新打开。
Syntax: q_name.close()
Parameters: The function does not takes any element.
Return Value: It closes the queue and does not returns anything.
示例 1 :
Ruby
#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
?
Ruby
#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
?
输出:
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