如何创建 Function1 对象以在 Java 中 finagle 的 Future 对象的 flatMap 方法中使用?
试过这个:
Function1<String, String> f = new Function1<String, String>() {
@Override
public String apply(String s) {
return null;
}
};
但它不起作用:
错误:(22, 73) java: is not abstract and does not override abstract method andThen$mcVJ$sp(scala.Function1) in scala.Function1