Array#collect():collect()是一個Array類方法,該方法為數組的每個元素調用一次參數塊。返回一個新數組,該數組具有該塊返回的值。
用法: Array.collect() 參數: Arrays in which we want elements to be invoked 返回: array with all the envoked elements
代碼#1:collect()方法示例
# Ruby code for collect() method
# declaring array
a = [1, 2, 3, 4]
# invoking block for each element
puts "collect a:#{a.collect {|x| x + 1 }}\n\n"
puts "collect a:#{a.collect {|x| x - 5*7 }}\n\n"
輸出:
collect a:[2, 3, 4, 5] collect a:[-34, -33, -32, -31]
代碼2:collect()方法示例
# Ruby code for collect() method
# declaring array
a = ["cat", "rat", "geeks"]
# invoking block for each element
puts "collect a:#{a.collect {|x| x + "!" }}\n\n"
puts "collect a:#{a.collect {|x| x + "_at" }}\n\n"
輸出:
collect a:["cat!", "rat!", "geeks!"] collect a:["cat_at", "rat_at", "geeks_at"]
相關用法
- Ruby Array collect!()用法及代碼示例
- Ruby Array dig()用法及代碼示例
- Ruby Array any?()用法及代碼示例
- Ruby Array map!()用法及代碼示例
- Ruby Array at()用法及代碼示例
- Ruby Array rassoc()用法及代碼示例
- Ruby Array bsearch()用法及代碼示例
- Ruby Array delete()用法及代碼示例
- Ruby Array clear()用法及代碼示例
- Ruby Array delete_if()用法及代碼示例
- Ruby Array bsearch_index()用法及代碼示例
- Ruby Array concat()用法及代碼示例
- Ruby Array compact!()用法及代碼示例
- Ruby Array compact()用法及代碼示例
- Ruby Array delete_at()用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | Array collect() operation。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。