循环:for...to 表达式 (F#)
for...to 表达式用于对循环变量的值范围进行循环迭代。
for identifier = start [ to | downto ] finish do
body-expression
备注
标识符的类型可以根据 start 和 finish 表达式的类型推断出来。 这些表达式的类型必须是 32 位整数。
尽管从技术上讲,for...to 是一个表达式,但它更像是命令性编程语言中的传统语句。 body-expression 的返回类型必须是 unit。 下面的示例演示 for...to 表达式的各种用法。
// A simple for...to loop.
let function1() =
for i = 1 to 10 do
printf "%d " i
printfn ""
// A for...to loop that counts in reverse.
let function2() =
for i = 10 downto 1 do
printf "%d " i
printfn ""
function1()
function2()
// A for...to loop that uses functions as the start and finish expressions.
let beginning x y = x - 2*y
let ending x y = x + 2*y
let function3 x y =
for i = (beginning x y) to (ending x y) do
printf "%d " i
printfn ""
function3 10 4
上述代码的输出结果如下。
1 2 3 4 5 6 7 8 9 10
10 9 8 7 6 5 4 3 2 1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18