企业🤖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()之外调用 } ```