在Scala中,我可以创建一个带有多个参数列表的方法:
def myMethod(value: Int)(fn: (Int) => Unit) {
fn(value)
}
并将其称为:
myMethod(10) { value => println(value) }
如何使用类构造函数执行相同的操作?我怎么称呼它?
答案 0 :(得分:9)
这很有效。
Welcome to Scala version 2.8.1.final (Java HotSpot(TM) Client VM, Java 1.6.0_22).
Type in expressions to have them evaluated.
Type :help for more information.
scala> class MyClass(val value: Int)(val fn: Int => Unit)
defined class MyClass
scala> new MyClass(10)({value => println(value)})
res0: MyClass = MyClass@17577f9