- Scala Tutorial
- Scala - Home
- Scala - Overview
- Scala - Environment Setup
- Scala - Basic Syntax
- Scala - Data Types
- Scala - Variables
- Scala - Classes & Objects
- Scala - Access Modifiers
- Scala - Operators
- Scala - IF ELSE
- Scala - Loop Statements
- Scala - Functions
- Scala - Closures
- Scala - Strings
- Scala - Arrays
- Scala - Collections
- Scala - Traits
- Scala - Pattern Matching
- Scala - Regular Expressions
- Scala - Exception Handling
- Scala - Extractors
- Scala - Files I/O
- Scala Useful Resources
- Scala - Quick Guide
- Scala - Useful Resources
- Scala - Discussion
Scala - for 循环
for循环是一种重复控制结构,可让您高效地编写需要执行特定次数的循环。Scala 中有多种形式的 for 循环,描述如下:
语法 - 带范围的 for 循环
Scala 中带有范围的 for 循环最简单的语法是 -
for( var x <- Range ){ statement(s); }
这里,范围可以是数字范围,表示为i 到 j或有时表示为i 到 j。左箭头 ← 运算符称为生成器,如此命名是因为它从一个范围生成单个值。
尝试以下示例程序来理解 Scala 编程语言中的循环控制语句(for 语句)。
例子
object Demo { def main(args: Array[String]) { var a = 0; // for loop execution with a range for( a <- 1 to 10){ println( "Value of a: " + a ); } } }
将上述程序保存在Demo.scala中。以下命令用于编译和执行该程序。
命令
\>scalac Demo.scala \>scala Demo
输出
value of a: 1 value of a: 2 value of a: 3 value of a: 4 value of a: 5 value of a: 6 value of a: 7 value of a: 8 value of a: 9 value of a: 10
尝试以下示例程序来理解循环控制语句(for 语句),以在 Scala 编程语言中打印范围为i 到 j 的循环。
例子
object Demo { def main(args: Array[String]) { var a = 0; // for loop execution with a range for( a <- 1 until 10){ println( "Value of a: " + a ); } } }
将上述程序保存在Demo.scala中。以下命令用于编译和执行该程序。
命令
\>scalac Demo.scala \>scala Demo
输出
value of a: 1 value of a: 2 value of a: 3 value of a: 4 value of a: 5 value of a: 6 value of a: 7 value of a: 8 value of a: 9
您可以在for 循环中使用由分号 (;) 分隔的多个范围,在这种情况下,循环将迭代给定范围的所有可能的计算。以下是仅使用两个范围的示例,您也可以使用两个以上的范围。
例子
object Demo { def main(args: Array[String]) { var a = 0; var b = 0; // for loop execution with a range for( a <- 1 to 3; b <- 1 to 3){ println( "Value of a: " + a ); println( "Value of b: " + b ); } } }
将上述程序保存在Demo.scala中。以下命令用于编译和执行该程序。
命令
\>scalac Demo.scala \>scala Demo
输出
Value of a: 1 Value of b: 1 Value of a: 1 Value of b: 2 Value of a: 1 Value of b: 3 Value of a: 2 Value of b: 1 Value of a: 2 Value of b: 2 Value of a: 2 Value of b: 3 Value of a: 3 Value of b: 1 Value of a: 3 Value of b: 2 Value of a: 3 Value of b: 3
语法 - for 循环与集合
以下语法为带有集合的循环。
for( var x <- List ){ statement(s); }
这里,List变量是一种具有元素列表的集合类型,for 循环迭代所有元素,一次返回 x 变量中的一个元素。
尝试以下示例程序来了解数字集合的循环。在这里,我们使用List()创建了这个集合。我们将在单独的章节中研究集合。Scala 编程语言中的循环控制语句(for 语句)。
例子
object Demo { def main(args: Array[String]) { var a = 0; val numList = List(1,2,3,4,5,6); // for loop execution with a collection for( a <- numList ){ println( "Value of a: " + a ); } } }
将上述程序保存在Demo.scala中。以下命令用于编译和执行该程序。
命令
\>scalac Demo.scala \>scala Demo
输出
value of a: 1 value of a: 2 value of a: 3 value of a: 4 value of a: 5 value of a: 6
语法 - 带过滤器的 for 循环
Scala 的 for 循环允许使用一个或多个if语句过滤掉一些元素。以下是for 循环和过滤器的语法。要向“for”表达式添加多个过滤器,请用分号 (;) 分隔过滤器。
for( var x <- List if condition1; if condition2... ){ statement(s); }
尝试以下示例程序来了解带有过滤器的循环。
例子
object Demo { def main(args: Array[String]) { var a = 0; val numList = List(1,2,3,4,5,6,7,8,9,10); // for loop execution with multiple filters for( a <- numList if a != 3; if a < 8 ){ println( "Value of a: " + a ); } } }
将上述程序保存在Demo.scala中。以下命令用于编译和执行该程序。
命令
\>scalac Demo.scala \>scala Demo
输出
value of a: 1 value of a: 2 value of a: 4 value of a: 5 value of a: 6 value of a: 7
语法 - 带yield的for循环
您可以将“for”循环的返回值存储在变量中,也可以通过函数返回。为此,您可以在“for”表达式的主体前面加上关键字“ yield”作为前缀。以下是语法。
例子
var retVal = for{ var x <- List if condition1; if condition2... } yield x
注意- 大括号用于保存变量和条件,retVal是一个变量,其中 x 的所有值将以集合的形式存储。
尝试下面的示例程序来理解使用yield 的循环。
例子
object Demo { def main(args: Array[String]) { var a = 0; val numList = List(1,2,3,4,5,6,7,8,9,10); // for loop execution with a yield var retVal = for{ a <- numList if a != 3; if a < 8 }yield a // Now print returned values using another loop. for( a <- retVal){ println( "Value of a: " + a ); } } }
将上述程序保存在Demo.scala中。以下命令用于编译和执行该程序。
命令
\>scalac Demo.scala \>scala Demo
输出
value of a: 1 value of a: 2 value of a: 4 value of a: 5 value of a: 6 value of a: 7