Ruby SizedQueue length()函数
length() 是Ruby中的一个内置函数,用于返回SizedQueue的当前长度或其中存在的对象数量。它并不返回SizedQueue的预定义大小。
语法 :sq_name.length()
参数 :该函数不需要任何参数。
返回值 : 它返回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