Scala List/sequence FAQ: How do I iterate over a Scala List (or more generally, a sequence) using theforeach method or for loop?
There are a number of ways to iterate over a Scala List using theforeach method (which is available to Scala sequences like List, Array,ArrayBuffer, Vector, Seq, etc.) andfor comprehension, and I‘ll show a few of those approaches here.
A common way to iterate over a Scala List is with the foreach method. Here‘s a quote about foreach from the book Programming in Scala:
foreach takes a procedure -- a function with a result type
Unit-- as the right operand. It simply applies the procedure to eachListelement. The result of the operation is againUnit; no list of results is assembled.
Here‘s a simple example showing how to use foreach to print every item in a List:
scala> val x = List(1,2,3)
x: List[Int] = List(1, 2, 3)
scala> x.foreach { println }
1
2
3
If you‘ve used a programming language like Ruby, this syntax will look familiar to you.
Note that this is a relatively common way to use the
foreachmethod. Becauseforeachtakes a procedure that doesn’t return anything, and because the result offoreachis alsoUnit, theforeachmethod is typically used for its side effects -- something like this example where output is printed for a user to see.
This next example shows a way to sum all the elements in a list usingforeach:
scala> var sum = 0 sum: Int = 0 scala> val x = List(1,2,3) x: List[Int] = List(1, 2, 3) scala> x.foreach(sum += _) scala> println(sum) 6
Note that this second example is not a common or preferred way to useforeach; I’m just trying to show some different possibilities. (When I first wrote this example it wasn’t the worst thing in the world to use a var field, but with more and more developers preferrring functional programming, the use of var fields is discouraged.)
The Scala for comprehension is not specific to lists, but is an extremely powerful way to operate on a List and other sequences. Here‘s a simple example of how to iterate over a sequence using the for comprehension (also known as a “for loop”):
scala> val names = Vector("Bob", "Fred", "Joe", "Julia", "Kim")
names: Vector[java.lang.String] = Vector(Bob, Fred, Joe, Julia, Kim)
scala> for (name <- names) println(name)
Bob
Fred
Joe
Julia
Kim
So far, so good. Now let‘s add a simple if clause to the for comprehension to print only the elements we want to print:
scala> val names = Vector("Bob", "Fred", "Joe", "Julia", "Kim")
names: Vector[java.lang.String] = Vector(Bob, Fred, Joe, Julia, Kim)
scala> for (name <- names if name.startsWith("J"))
| println(name)
Joe
Julia
If you already know about the for comprehension, you know that you can add multiple if clauses, and much more functionality. I could easily write an entire tutorial on the Scala for comprehension, so to keep this tutorial short, I‘ll stop here for now.
Before leaving, I will add these notes however, from the book Programming in Scala:
Scala provides the
forcomprehension, which provides syntactically pleasing nesting ofmap,flatMap, andfilter... Theforcomprehension is nota looping construct, but is a syntactic construct the compiler reduces tomap,flatMap, andfilter.
I apologize that these examples are not as detailed as I prefer. If I had more free time I’d expand on them here, but sadly I don’t have that free time right now. So I’ll just have to say, “Please see the Scala Cookbook, where I cover the for loop and foreach method in great detail”:
I hope this short tutorial on how to iterate over a Scala List (and other sequences) using the foreach method and for comprehension have been helpful. As you can tell from these examples, there‘s much more power available to you with both approaches, which is one of the great things about the Scala programming language.
原文:http://www.cnblogs.com/seaspring/p/5645198.html