class ClosureClass {
def printResult[T](f: => T) = {
println("choice 1")
println(f)
}
def printResult[T](f: String => T) = {
println("choice 2")
println(f("HI THERE"))
}
}
object demo {
def main(args: Array[String]) {
val cc = new ClosureClass
cc.printResult() // call 1
cc.printResult("Hi") // call 2
}
}
我玩了上面的代码,结果告诉了我。我有两个问题
1) 为什么呼叫 1 和呼叫 2 都进入选择 1?
2)如何传递参数以便我可以进入选择 2。
谢谢,
choice 1
()
choice 1
Hi