java 数组去重 stream
时间: 2023-10-13 11:10:47 浏览: 108
Java中对List去重 Stream去重的解决方法
您好!关于您的问题,我可以提供以下代码实现Java数组去重,使用Stream:
```
int[] arr = {1, 2, 3, 2, 1, 4, 5, 4, 6};
int[] arrDistinct = Arrays.stream(arr).distinct().toArray();
System.out.println(Arrays.toString(arrDistinct));
```
这段代码将输出: [1, 2, 3, 4, 5, 6]
希望对您有帮助!如果您有其他问题,请随时提出。
阅读全文