Scala理解基础

示例

这展示了一个for循环上的过滤器,以及使用yield来创建“序列理解”:

for ( x <- 1 to 10 if x % 2 == 0)
  yield x

输出为:

scala.collection.immutable.IndexedSeq[Int] = Vector(2, 4, 6, 8, 10)

当您需要基于迭代及其过滤器创建新集合时,for理解很有用。