當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.Class.getComponentType()用法及代碼示例



描述

這個java.lang.Class.getComponentType() 方法返回表示數組組件類型的類。如果此類不代表數組類,則此方法返回 null。

聲明

以下是聲明java.lang.Class.getComponentType()方法

public Class<?> getComponentType()

參數

NA

返回值

如果此類是數組,則此方法返回表示此類的組件類型的 Class。

異常

NA

示例

下麵的例子展示了 java.lang.Class.getComponentType() 方法的用法。

package com.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Class.getComponentType() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。