stream.sorted()时编译报错:cannot be applied to lambda parameter

关键提示:注意sorted有否入参。

下面是出错的代码:

int[] arr = new int[]{5, 7, 3, 8, 2, 4, 9};
Arrays.stream(arr).sorted((a,b) -> Integer.compare(a,b)).forEach(a -> System.out.println(a));

错误提示如下(“这个提示其实也不是很准确”):
在这里插入图片描述

问题分析

compare方法报错,看起来是入参不对。入参是sorted方法的lambda表达式注入,这样话要看下sorted方法。

查看sorted方法提示,发现int数组的stream已经是IntStream,而IntStream.sorted()方法无入参,如下图:
在这里插入图片描述

解决方案

去除sorted方法入参

int[] arr = new int[]{5, 7, 3, 8, 2, 4, 9};
// Arrays.stream(arr).sorted((a,b) -> Integer.compare(a,b)).forEach(a -> System.out.println(a));
Arrays.stream(arr).sorted().forEach(a -> System.out.println(a));

如果您的问题没有解决,欢迎留言讨论,让更多的人参与进来。

你可能感兴趣的:(Java,━,基本语法与特性)