在 Java 中使用 stream.orted() 對列表進行排序
Dhruvdeep Singh Saini
2023年10月12日
本教程將詳細介紹 Java 中的 Stream API 提供的 stream sorted()
方法。
在 Java 中使用 Stream sorted()
對列表進行排序
Java 提供流 API 以便於處理其集合中的物件。流從輸入/輸出或列表中獲取輸入以提供結果,而無需修改原始資料結構。
Stream sorted()
返回一個元素流,按照輸入的自然順序排序。這種方法對有序流很有幫助,但對無序流給出了不穩定的結果,需要進一步調整。
語法:
Stream<Interface> sorted()
這是一個簡單的程式碼示例。
import java.util.*;
public class StreamSorting {
public static void main(String[] args) { // List of first 5 positive and even integers
List<Integer> MyList = Arrays.asList(10, 2, 6, 8, 4);
System.out.println("Stream Sorted returns: ");
// List to stream, sorting, and printing
MyList.stream().sorted().forEach(System.out::println);
}
}
輸出:
Stream Sorted returns:
2
4
6
8
10
在 Java 中使用 Stream sorted()
對列表進行倒序排序
我們還可以提供排序發生的順序。要以相反的順序獲取輸出或排序的流,請通過告訴比較器使用相反的順序在 sorted 方法中指定它。
語法:
.sorted(Comparator.reverseOrder())
定義類後,指定如何比較類的兩個物件,
語法:
Stream<Interface> sorted(Comparator<? Super Interface> comparator)
定義比較器後,使用以下語法列印列表。
MyList.stream()
.sorted((obj1, obj2) -> obj1.getItem().getValue().compareTo(obj2.getItem().getValue()))
.forEach(System.out::println);
下面是一個以相反順序排序的流的示例。
import java.util.*;
public class StreamCompareToExample {
// Main functions
public static void main(String[] args) {
// Creating list
List<coordinate> MyList = new ArrayList<>();
// Adding objects to list
MyList.add(new coordinate(20, 200));
MyList.add(new coordinate(30, 300));
MyList.add(new coordinate(10, 100));
MyList.add(new coordinate(40, 400));
// List to stream, sorting two points P1, P2
// a in P1 is compared to a of P2, sorted, and then printed
MyList.stream().sorted((p1, p2) -> p1.a.compareTo(p2.a)).forEach(System.out::println);
}
}
// A class of coordinate point objects
class coordinate {
Integer a, b;
coordinate(Integer a, Integer b) {
this.a = a;
this.b = b;
}
public String toString() {
return this.a + ", " + this.b;
}
}
輸出:
10, 100
20, 200
30, 300
40, 400