位置:首頁 > Java技術 > java.lang > java.lang.Class.getComponentType()方法實例

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