El new() es una función incorporada en Ruby que crea una nueva cola con el nombre dado.
Sintaxis : q_name = Queue.new()
Parámetros : La función no toma ningún parámetro.
Valor de retorno : crea una nueva cola.
Ejemplo 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
Salida :
1 2
Ejemplo 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
Salida :
0 0
Referencia : https://devdocs.io/ruby~2.5/queue#method-c-new