红宝石 |大小队列关闭()函数
close()是 Ruby 中的一个内置函数,它永久关闭 SizedQueue,并且不允许在其中进行任何推送或弹出操作。已关闭的 SizeQueue 无法重新打开。
Syntax: sq_name.close()
Parameters: The function does not takes any element.
Return Value: It closes the SizedQueue and does not returns anything.
示例 1 :
Ruby
#Ruby program for close() function in SizedQueue
#Create a new SizedQueue q1
q1 = SizedQueue.new(2)
#push 5
q1.push(5)
#push 6
q1.push(6)
#Prints the element
puts q1.pop
#Closed the SizedQueue
q1.close()
#check if closed or not
puts q1.closed
?
Ruby
#Ruby program for close() function in SizedQueue
#Create a new SizedQueue q1
q1 = SizedQueue.new(1)
#push 12
q1.push(12)
#Closed the SizedQueue
q1.close()
#check if closed or not
puts q1.closed
?
输出:
5
true
示例 2 :
红宝石
#Ruby program for close() function in SizedQueue
#Create a new SizedQueue q1
q1 = SizedQueue.new(1)
#push 12
q1.push(12)
#Closed the SizedQueue
q1.close()
#check if closed or not
puts q1.closed
?
输出:
true
参考:https://devdocs.io/ruby~2.5/sizedqueue#method-i-close