陣列類通過newInstance來建立
阿新 • • 發佈:2018-11-16
Java中陣列是一個Class,所以我們可以也可以通過newInstance來建立陣列物件。在Java的反射機制中,通過 陣列的 class 物件的getComponentType()
方法可以取得一個數組的Class物件, 通過Array.newInstance()
可以反射生成陣列物件。下面我們看具體示例:
System.out.println(char[].class.getComponentType());
System.out.println(char.class.getComponentType());
char[] charArray = (char [])Array.newInstance(char[].class.getComponentType(), 100);
System.out.println("the length of the charArray is :" + charArray.length);
執行結果:
char
null
the length of the charArray is :100
getComponentType()只能用於陣列,非陣列物件會返回null。通過反射的方式可以建立指定個元素的陣列物件。另外,無論基本資料型別(byte short int long float double char boolean)的陣列還是引用資料型別(Integer String 等)的陣列,都可以通過getComponentType()獲取到相應的 Class 物件,都可以通過(String [])Array.newInstance(String[].class.getComponentType(), 10)方法反射生成陣列物件。