Ruby SizedQueue max()函数
max() 是Ruby中的一个内置函数,用于返回SizedQueue的最大尺寸。它返回队列初始化时使用的大小。
语法 :sq_name.max()
参数 :该函数不需要任何参数。
返回值 : 它返回SizedQueue的大小。
例子 1 :
#Ruby program for max() function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(3)
#pushes 5
sq1.enq(5)
#pushes 6
sq1.enq(6)
#Prints the max size
puts sq1.max
#Pops the element
sq1.pop
#Prints the max size
puts sq1.max
输出:
3
3
例2 :
#Ruby program for max() function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(6)
#pushes 5
sq1.enq(5)
#pushes 6
sq1.enq(6)
#pushes 7
sq1.enq(7)
#Prints the length
puts sq1.max
#Pops the element
sq1.pop
#Prints the length
puts sq1.max
输出:
6
6
参考资料 : https://devdocs.io/ruby~2.5/sizedqueue#method-i-max