作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在函数内部创建一个辅助函数
,然后调用辅助函数
并返回它以用于函数定义的原始调用。
例如:
def g(arg1: List[T]): List[T] = {
def h(arg1: List[T], arg2: [T]): List[T] = {
//code to call here
}
//call h with an initial value
h(arg, 12345)
}
...
...
//in main()
g(List(1,2,3)) // --> returns result of h(List(1,2,3), 12345)
我想在原始函数的作用域内定义该函数,因为它与代码中的其他函数无关。
Scala
执行此操作的方法是什么?
是否还有一种完全不同的方式来创建相同的功能?如果是这样,怎么办?
(我之所以想到这一点是因为 OCaml
中使用了 let
+ in
范例)
最佳答案
scala 方法是:
def g(arg1: List[T]): List[T] = {
def h(arg2: T): List[T] = {
// arg1 is already available here. (closure)
//code to call here
}
//call h with an initial value
h(12345)
}
另一种方法是
val h = new Function1[T, List[T]] {
def apply(arg2: T): List[T] = {
// function, arg1 is still available.
}
}
关于scala - 如何在 Scala 中的 def block 内定义辅助函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20310511/
我是一名优秀的程序员,十分优秀!