📌  相关文章
📜  红宝石 |大小队列 <<函数

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

红宝石 |大小队列 <<函数

<<()是 Ruby 中的一个内置函数,用于将元素插入到 SizedQueue 中。 SizedQueue 具有特定的容量,一旦满了就不能接受元素。

示例 1

#Ruby program for << function in SizedQueue
  
#Create a new SizedQUEUE q1
q1 = SizedQueue.new(2)
  
#push 5
         q1
     << 5
#push 6
     q1
     << 6
  
#Prints the element
        puts q1.pop
            puts q1.pop

输出

5
6

示例 2

#Ruby program for << function in SizedQueue
  
#Create a new SizedQUEUE q1
q1 = SizedQueue.new(3)
  
#push 15
         q1
     << 15
  
#push 16
     q1
     << 16
  
#push 17
     q1
     << 17
  
#Prints the element
        puts q1.pop
            puts q1.pop
                puts q1.pop

输出

15
16
17

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