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
相关用法
- Ruby SizedQueue deq()用法及代码示例
- Ruby SizedQueue max()用法及代码示例
- Ruby SizedQueue pop()用法及代码示例
- Ruby SizedQueue enq()用法及代码示例
- Ruby SizedQueue max=用法及代码示例
- Ruby SizedQueue new()用法及代码示例
- Ruby SizedQueue shift()用法及代码示例
- Ruby SizedQueue close()用法及代码示例
- Ruby SizedQueue push()用法及代码示例
- Ruby SizedQueue size()用法及代码示例
- Ruby SizedQueue empty?用法及代码示例
- Ruby SizedQueue clear()用法及代码示例
- Ruby Set length()用法及代码示例
- Ruby Array length()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | SizedQueue length() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。