當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Enumerable drop()用法及代碼示例


可枚舉的drop()是Ruby中的一種內置方法,在刪除前N個元素後,它會返回枚舉器中的其餘元素。

用法: block.drop(N)

參數:該函數采用N表示要刪除的元素數。


返回值:刪除前N個元素後,返回其餘元素。

例子1

# Ruby program for drop method in Enumerable 
  
# Initialize 
enu = (1..50) 
  
# returns rest elements 
enu.drop(45)

輸出

[46, 47, 48, 49, 50]

例子2

# Ruby program for drop method in Enumerable 
  
# Initialize 
enu = [1, 2, 3] 
  
# returns rest elements 
enu.drop(1)

輸出

[2, 3]


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable drop() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。