📜  红宝石 |大小队列长度()函数

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

红宝石 |大小队列长度()函数

length()是 Ruby 中的一个内置函数,返回 SizedQueue 的当前长度或其中存在的对象数。它不返回 SizedQueue 的预定义大小

示例 1

#Ruby program for length() function in SizedQueue
  
#Create a new SizedQueue q1
sq1 = SizedQueue.new(2)
  
#pushes 5
          sq1.enq(5)
  
#pushes 6
              sq1.enq(6)
  
#Prints the length
                  puts sq1.length
  
#Pops the element
                      sq1.pop
  
#Prints the length
                          puts sq1.length

输出

2
1

示例 2

#Ruby program for length() function in SizedQueue
  
#Create a new SizedQueue q1
sq1 = SizedQueue.new(3)
  
#Prints the length
          puts sq1.length
  
#pushes 5
              sq1.enq(5)
  
#pushes 6
                  sq1.enq(6)
  
#pushes 7
                      sq1.enq(7)
  
#Prints the length
                          puts sq1.length
  
#Pops the element
                              sq1.pop
  
#Prints the length
                                  puts sq1.length

输出

0
3
2

参考:https://devdocs.io/ruby~2.5/sizedqueue#method-i-length