要使用Java泛型實現排序,可以按照以下步驟操作:
public class Sorter<T> {
public void sort(T[] array) {
// 排序邏輯
}
}
public class Sorter<T> {
public void sort(T[] array) {
Arrays.sort(array);
}
}
Sorter<Integer> sorter = new Sorter<>();
Integer[] array = {5, 3, 1, 4, 2};
sorter.sort(array);
以上示例展示了如何對一個整數數組進行排序。根據實際情況,可以將Sorter類和sort方法適配到不同的數據類型上。