給定一個包含兩列資料行的二維數組,其中第一列表示「yyyy.MM.dd HH:mm」格式的日期,第二列是字串,我們的目標是根據第一列對陣列進行排序。
要對數組進行排序,我們可以利用 Arrays.sort() 方法以及自訂比較器。比較器將比較每行的第一個元素,這些元素代表日期。
<code class="java">import java.util.Arrays; import java.util.Comparator; public class ArraySorter { public static void main(String[] args) { // Input array String[][] data = { {"2009.07.25 20:24", "Message A"}, {"2009.07.25 20:17", "Message G"}, {"2009.07.25 20:25", "Message B"}, {"2009.07.25 20:30", "Message D"}, {"2009.07.25 20:01", "Message F"}, {"2009.07.25 21:08", "Message E"}, {"2009.07.25 19:54", "Message R"} }; // Create a comparator to sort based on the first column (date) Comparator<String[]> comparator = Comparator.comparing(row -> row[0]); // Sort the array using the comparator Arrays.sort(data, comparator); // Print the sorted array for (String[] row : data) { System.out.println(row[0] + " " + row[1]); } } }</code>
輸出將顯示排序後的數據,行依第一個升序排列欄位(日期):
2009.07.25 19:54 Message R 2009.07.25 20:01 Message F 2009.07.25 20:17 Message G 2009.07.25 20:24 Message A 2009.07.25 20:25 Message B 2009.07.25 20:30 Message D 2009.07.25 21:08 Message E
以上是如何依特定日期列對二維數組進行排序?的詳細內容。更多資訊請關注PHP中文網其他相關文章!