📜  红宝石 |队列 new()函数

📅  最后修改于: 2022-05-13 01:55:40.642000             🧑  作者: Mango

红宝石 |队列 new()函数

new()是 Ruby 中的一个内置函数,它创建一个给定名称的新队列。

示例 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