for循環中的 yield 會把當前的元素記下來,保存在集合中,循環結束後將返回該集合。Scala中for循環是有返回值的。若是被循環的是Map,返回的就是Map,被循環的是List,返回的就是List,以此類推。es6
例1:數組
1 scala> for (i <- 1 to 5) yield i 2 res10: scala.collection.immutable.IndexedSeq[Int] = Vector(1, 2, 3, 4, 5)
例2:oop
1 scala> for (i <- 1 to 5) yield i * 2 2 res11: scala.collection.immutable.IndexedSeq[Int] = Vector(2, 4, 6, 8, 10)
例3: for/yield 循環的求模操做:測試
1 scala> for (i <- 1 to 5) yield i % 2 2 res12: scala.collection.immutable.IndexedSeq[Int] = Vector(1, 0, 1, 0, 1)
例4:Scala 數組上的 for 循環 yield 的例子es5
1 scala> val a = Array(1, 2, 3, 4, 5) 2 a: Array[Int] = Array(1, 2, 3, 4, 5) 3 4 scala> for (e <- a) yield e 5 res5: Array[Int] = Array(1, 2, 3, 4, 5) 6 7 scala> for (e <- a) yield e * 2 8 res6: Array[Int] = Array(2, 4, 6, 8, 10) 9 10 scala> for (e <- a) yield e % 2 11 res7: Array[Int] = Array(1, 0, 1, 0, 1)
例5:for 循環, yield, 和守衛( guards) (for loop 'if' conditions)spa
假如你熟悉了 Scala 複雜的語法, 你就會知道能夠在 for 循環結構中加上 'if' 表達式. 它們做爲測試用,一般被認爲是一個守衛,你能夠把它們與 yield 語法聯合起來用。參見::scala
1 scala> val a = Array(1, 2, 3, 4, 5) 2 a: Array[Int] = Array(1, 2, 3, 4, 5) 3 4 scala> for (e <- a if e > 2) yield e 5 res1: Array[Int] = Array(3, 4, 5)
加上了 "if e > 2" 做爲守衛條件用以限制獲得了只包含了三個元素的數組.code
例6:Scala for 循環和 yield 的例子 - 總結blog
若是你熟悉 Scala 的 loop 結構, 就會知道在 for 後的圓括號中還能夠許更多的事情. 你能夠加入 "if" 表達式,或別的語句, 好比下面的例子,能夠組合多個 if 語句:get
1 def scalaFiles = 2 for { 3 file <- filesHere 4 if file.isFile 5 if file.getName.endsWith(".scala") 6 } yield file
yield 關鍵字的簡短總結:
轉自:http://unmi.cc/scala-yield-samples-for-loop/感謝做者無私分享!