Java中定義泛型方法的語法為在方法的返回值前加上類型參數(shù),并在方法的參數(shù)列表中使用該類型參數(shù)。示例如下:
public class GenericMethodExample {
// 定義一個泛型方法,使用類型參數(shù)T
public <T> void printArray(T[] array) {
for (T element : array) {
System.out.println(element);
}
}
public static void main(String[] args) {
// 創(chuàng)建一個整數(shù)數(shù)組
Integer[] intArray = {1, 2, 3, 4, 5};
// 創(chuàng)建一個字符串數(shù)組
String[] stringArray = {"Hello", "World"};
// 創(chuàng)建GenericMethodExample對象
GenericMethodExample example = new GenericMethodExample();
// 調(diào)用泛型方法printArray,并傳入整數(shù)數(shù)組
example.printArray(intArray);
// 調(diào)用泛型方法printArray,并傳入字符串數(shù)組
example.printArray(stringArray);
}
}
在上述示例中,printArray
方法定義了一個類型參數(shù)T
,它可以表示任意類型。通過使用泛型方法,我們可以在方法中使用這個類型參數(shù)。在main
方法中,我們創(chuàng)建了一個整數(shù)數(shù)組和一個字符串數(shù)組,并通過調(diào)用printArray
方法打印數(shù)組的元素。無論傳入的是整數(shù)數(shù)組還是字符串數(shù)組,printArray
方法都可以正確地打印數(shù)組的元素。