写一个排序方法,能够对整型数组、字符串数组甚至其他任何类型的数组进行排序
// 排序方法 public static <E> void printArray(E[] inputArray) { // 输出数组元素 for (E ele : inputArray) { System.out.println(ele); } } // 调用方法 Integer[] intArray = {1, 2, 3, 4, 5, 6}; printArray(intArray); Double[] douArray = {1.1, 1.2, 1.3, 1.4, 1.5}; printArray(douArray);
泛型 extends 实例比较3个值的最大值
// 比较方法 public static <T extends Comparable<T>> T maxnum(T x, T y, T z) { T max = x; if (y.compareTo(max) > 0) { max = y; } if (z.compareTo(max) > 0) { max = z; } return max; } // 调用方法 System.out.println(maxnum(1, 2, 3)); System.out.println(maxnum(0.1, 0.2, 0.3));
泛型类
// 定义类 class Friend<T> { private T age; private T name; public void setName(T name) { this.name = name; } public T getName() { return this.name; } } // 使用类 // String类型 Friend<String> friend1 = new Friend<String>(); friend1.setName("李燕茹"); System.out.println(friend1.getName()); // Int类型 Friend<Integer> friend2 = new Friend<Integer>(); friend2.setName(1024); System.out.println(friend2.getName());