java.lang.Class.getComponentType()方法範例


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