溫馨提示×

Java Stream如何實(shí)現(xiàn)元素的去重

小樊
94
2024-08-17 15:44:36
欄目: 編程語言

Java Stream提供了distinct()方法來實(shí)現(xiàn)元素的去重。distinct()方法返回一個(gè)去重后的Stream,只包含不重復(fù)的元素。

例如,下面的示例代碼使用distinct()方法去重一個(gè)包含重復(fù)元素的Stream:

List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 1, 2, 5);
List<Integer> distinctNumbers = numbers.stream()
                                        .distinct()
                                        .collect(Collectors.toList());
System.out.println(distinctNumbers); // 輸出 [1, 2, 3, 4, 5]

在上面的例子中,numbers列表中包含重復(fù)的元素1和2。通過調(diào)用distinct()方法,我們得到了一個(gè)去重后的Stream,只包含不重復(fù)的元素。最后我們使用collect(Collectors.toList())方法將Stream轉(zhuǎn)換為List并輸出結(jié)果。

0