在这种情况下,使用list.map(_.id)
是最好的解决方案。显然,还有许多其他方法可以做到这一点。为了更好地理解,以下是两个例子。
注入数组
将所选元素添加到数组中,例如:
> list = [1,2,3]
=> [1,2,3]
> list.inject([]) { |list,el| list << "Element #{el}" if (el % 2 == 0); list }
=> ["Element 2"]
可以在 Scala 中实现为:
> val list = List(1,2,3)
list: List[Int] = List(1, 2, 3)
> val map = list.map(x => if (x % 2 == 0) Some(s"Element $x") else None).flatten
map: List[String] = List(Element 2)
注入哈希
在将 Ruby 代码注入哈希之后:
> list = [1,2,3]
=> [1,2,3]
> list.inject({}) { |memo,x| memo[x] = "Element #{x}"; memo }
=> {1=>"Element 1", 2=>"Element 2", 3=>"Element 3"}
可以在Scala中完成:
> val list = List(1,2,3)
list: List[Int] = List(1, 2, 3)
> val map = list.map(x => (x -> s"Element $x")).toMap
map: scala.collection.immutable.Map[Int,String] = Map(1 -> Element 1, 2 -> Element 2, 3 -> Element 3)