shift()是Ruby中的內置函數,它返回SizedQueue前麵的元素並將其從SizedQueue中刪除。
用法:sq_name.shift()
參數:該函數不包含任何元素。
返回值:它返回位於SizedQueue前麵的第一個元素,並將其從SizedQueue中刪除。
例子1:
#Ruby program for shift() function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(2)
#push 5
sq1.push(5)
#push 6
sq1.push(6)
#Prints the top - most element and also shifts it
puts sq1.shift
puts q1.shift
輸出:
5 6
例子2:
#Ruby program for shift function in SizedQueue
#Create a new SizedQueue q1
sq1 = SizedQueue.new(2)
#push 12
sq1.push(12)
#push 21
sq1.push(21)
#Prints the top - most element and also shifts it
puts sq1.shift
puts sq1.shift
輸出:
12 21
參考:https://devdocs.io/ruby~2.5/SizedQueue#method-i-shift
相關用法
- Ruby SizedQueue enq()用法及代碼示例
- Ruby SizedQueue new()用法及代碼示例
- Ruby SizedQueue max=用法及代碼示例
- Ruby SizedQueue max()用法及代碼示例
- Ruby SizedQueue deq()用法及代碼示例
- Ruby SizedQueue pop()用法及代碼示例
- Ruby SizedQueue push()用法及代碼示例
- Ruby SizedQueue empty?用法及代碼示例
- Ruby SizedQueue close()用法及代碼示例
- Ruby SizedQueue length()用法及代碼示例
- Ruby SizedQueue size()用法及代碼示例
- Ruby SizedQueue clear()用法及代碼示例
- Ruby Queue shift()用法及代碼示例
- Ruby Array shift()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | SizedQueue shift() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。