ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
Scala函数内可以定义函数,函数内的函数也称局部函数或者内嵌函数。 ```scala //使用函数嵌套实现阶乘运算 def factorial(i: Int): Int = { def fact(i: Int, accumulator: Int): Int = { if (i <= 1) accumulator else fact(i - 1, i * accumulator) } fact(i, 1) //不能在factorial()之外调用 } ```