Ruby 队列 new()函数
new() 是Ruby中的一个内置函数,用于创建一个给定名称的新队列。
语法 :q_name = Queue.new()
参数 :该函数不需要任何参数。
返回值 :它创建了一个新的队列。
例子 1 :
#Ruby program for new () function in Queue
#Create a new QUEUE q1
q1 = Queue.new
#pushes 5
q1.enq(5)
#Create a new QUEUE q2
q2
= Queue.new
#pushes 15
q2.enq(15)
#pushes 16
q2.enq(16)
#Prints the length of q1
puts q1.length
#Prints the length of q2
puts q2.length
输出:
1
2
例2 :
#Ruby program for new () function in Queue
#Create a new QUEUE q1
q1 = Queue.new
#Create a new QUEUE q2
q2
= Queue.new
#Prints the length of q1
puts q1.length
#Prints the length of q2
puts q2.length
输出:
0
0
参考资料 : https://devdocs.io/ruby~2.5/queue#method-c-new