Scala之旅——嵌套方法

在Scala中,可以定义嵌套方法。下面的例子中,提供了一个方法factorial用于计算给定数字的阶乘:

1
2
3
4
5
6
7
8
9
10
def factorial(x: Int): Int = {
def fact(x: Int, accumulator: Int): Int = {
if (x <= 1) accumulator
else fact(x - 1, x * accumulator)
}
fact(x, 1)
}

println("Factorial of 2: " + factorial(2))
println("Factorial of 3: " + factorial(3))

该程序的输出是:

1
2
Factorial of 2: 2
Factorial of 3: 6
小鹏 wechat
公众号:数据Man
0%