我这样做了:
public class LambdaConflict
{
public static void main(String args[]){
//*
System.out.println(LambdaConflict.get(
(str) -> "Hello World!! By ME?"
));
/*/
System.out.println(LambdaConflict.get(new Intf<String> (){
@Override public String get1(String str){
return "Hello World!! By get1 " + str;
}
}));
/*****/
}
public static String get(Intf<String> i, boolean b){
return i.get1("from 1");
}
}
interface Intf<T>
{
public T get1(T arg1);
public T get2(T arg1);
}
并得到这个例外:
不兼容的类型:Intf 不是功能接口 Intf 接口中的多个非覆盖抽象方法 注意:某些消息已被简化;使用 -Xdiags:verbose 重新编译以获得完整的输出 1 错误
有什么条件不能使用 lambda 替换匿名类吗?