close()是Ruby中的内置函数,它将永久关闭队列,并且不允许在其中进行任何推入或弹出操作。关闭的队列不能为re-opened。
用法:q_name.close()
参数:该函数不包含任何元素。
返回值:它关闭队列,不返回任何内容。
例子1:
#Ruby program for clear() 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
相关用法
- Ruby SizedQueue close()用法及代码示例
- Ruby Queue new()用法及代码示例
- Ruby Queue enq()用法及代码示例
- Ruby Queue pop()用法及代码示例
- Ruby Queue deq()用法及代码示例
- Ruby Queue size()用法及代码示例
- Ruby Queue length()用法及代码示例
- Ruby Queue shift()用法及代码示例
- Ruby Queue push()用法及代码示例
- Ruby Queue empty?用法及代码示例
- Ruby Queue clear()用法及代码示例
- Ruby Queue closed?用法及代码示例
- Ruby Set add?用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Queue close() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。