java.lang.Class.getComponentType() 方法返回的類來表示陣列的元件型別。如果該類不表示陣列類此方法返回null。
以下是java.lang.Class.getComponentType()方法的宣告
public Class<?> getComponentType()
NA
此方法返回的類來表示這個類的元件型別,如果這個類是一個陣列。
NA
下面的例子顯示java.lang.Class.getComponentType()方法的使用。
package com.yiibai; import java.lang.*; public class ClassDemo { public static void main(String[] args) { String[] arr = new String[] {"admin"}; // returns the Class representing the component type Class arrClass = arr.getClass(); Class componentType = arrClass.getComponentType(); if (componentType != null) { System.out.println("ComponentType = " + componentType.getName()); } else { System.out.println("ComponentType is null"); } } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
ComponentType = java.lang.String