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
相關用法
- Ruby SizedQueue max()用法及代碼示例
- Ruby SizedQueue pop()用法及代碼示例
- Ruby SizedQueue enq()用法及代碼示例
- Ruby SizedQueue deq()用法及代碼示例
- Ruby SizedQueue new()用法及代碼示例
- Ruby SizedQueue shift()用法及代碼示例
- Ruby SizedQueue clear()用法及代碼示例
- Ruby SizedQueue close()用法及代碼示例
- Ruby SizedQueue length()用法及代碼示例
- Ruby SizedQueue empty?用法及代碼示例
- Ruby SizedQueue size()用法及代碼示例
- Ruby SizedQueue push()用法及代碼示例
- Ruby Set add?用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | SizedQueue max= function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。