java泛型之泛型陣列。

suyu_yuan發表於2016-07-01

程式碼如下:

package test;


/** 
* @author : suyuyuan
* @date :2016年7月1日 下午3:13:41 
* @version 1.0 
*/


public class GenArray {
public static void main(String[] args) {
String arr[] = {"Hello","World!"};
tell(arr);
Integer intArr[] = {1,2,3};    //注意,此處一定要使用基本資料型別對應的封裝類。
tell(intArr);
}

public static <T>void tell(T arr[]){
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i]);
}
}
}


相關文章