当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby SizedQueue max=用法及代码示例


max =()是Ruby中的内置函数,可更改SizedQueue的当前容量并将其设置为X,其中X由用户指定。

用法:sq_name.max=X()

参数:该函数接受单个必需参数,并将SizedQueue的当前大小更改为X。


返回值:将SizedQueue的当前大小设置为X。

例子1

#Ruby program for max() function in SizedQueue 
  
#Create a new SizedQueue q1 
sq1 = SizedQueue.new(3) 
  
#Prints the max size 
          puts sq1.max 
  
#Changes the max size 
              sq1.max 
    = 2 
  
#Prints the new max size 
      puts sq1.max

输出

3
2

例子2

#Ruby program for max() function in SizedQueue 
  
#Create a new SizedQueue q1 
sq1 = SizedQueue.new(3) 
  
#Prints the max size 
          puts sq1.max 
  
#Changes the max size 
              sq1.max 
    = 4 
  
#Prints the new max size 
      puts sq1.max

输出

3
4

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



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | SizedQueue max= function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。