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

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

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

size()是 Ruby 中的内置函数,返回 SizedQueue 的当前大小或其中存在的对象数。

示例 1

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

输出

2
1

示例 2

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

输出

0
3
2

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