Ruby 数组collect()操作
Array#collect() : collect() 是一个数组类方法,它对数组中的每个元素都调用一次参数块。一个新的数组被返回,它具有该块返回的值。
语法。 Array.collect()
参数。 我们希望元素被调用的数组
返回:包含所有被调用元素的数组
代码 #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"]