(x);描述的是有一个参数并且有返回值C.Comparator com = (x, y) -> {System.out.println("函数式接口");return Integer.compare(x, y); };描述的是有两个以上的参数,有返回值,并且 Lambda 体中有多条语句D.Comparator com = (x, y) -> Integer.compare(x, y);描述的是若Lambda 体中只有一条...