请考虑以下代码段:
def foo(a: Int)(b: Int) = a + b
foo
它不会编译,并产生以下错误消息:
error: missing argument list for method foo
Unapplied methods are only converted to functions when
a function type is expected.
You can make this conversion explicit by writing
`foo _` or `foo(_)(_)` instead of `foo`.
foo _
提示有效。但是如果我写表达式
foo(_)(_)
根据上一条错误消息的建议,我收到一条新的错误消息:
error: missing parameter type for expanded
function ((x$1: <error>, x$2: <error>) => foo(x$1)(x$2))
这似乎是违反直觉的。
在什么情况下foo(_)(_)
提示应该有用,它究竟告诉我什么?
(消除噪音;我越是不停地编辑问题,它的意义就越小;科尔玛是对的)
答案 0 :(得分:2)
foo(_)(_)
的类型为(Int, Int) => Int
。因此,如果您指定该类型或在需要该类型的上下文中使用它,它将起作用:
scala> foo(_: Int)(_: Int)
res1: (Int, Int) => Int = $$Lambda$1120/1321433666@798b36fd
scala> val f: (Int, Int) => Int = foo(_)(_)
f: (Int, Int) => Int = $$Lambda$1121/1281445260@2ae4c424
scala> def bar(f: (Int, Int) => Int): Int = f(10, 20)
bar: (f: (Int, Int) => Int)Int
scala> bar(foo(_)(_))
res2: Int = 30