封闭? Ruby中的内置函数是检查队列是否关闭?它返回一个布尔值,如果Queue关闭或返回false,则为true。
用法:q_name.closed?
参数:该函数不包含任何元素。
返回值:如果队列关闭,则返回true,否则返回false。
例子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
相关用法
- Ruby Queue pop()用法及代码示例
- Ruby Queue new()用法及代码示例
- Ruby Queue enq()用法及代码示例
- Ruby Queue deq()用法及代码示例
- Ruby Queue empty?用法及代码示例
- Ruby Queue size()用法及代码示例
- Ruby Queue close()用法及代码示例
- Ruby Queue length()用法及代码示例
- Ruby Queue clear()用法及代码示例
- Ruby Queue shift()用法及代码示例
- Ruby Queue push()用法及代码示例
- Ruby Set add?用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Queue closed? function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。