Java Class getComponentType() 方法



描述

Java Class getComponentType() 方法返回表示数组组件类型的 Class。如果此类不表示数组类,则此方法返回 null。

声明

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

public Class<?> getComponentType()

参数

返回值

如果此类是数组,则此方法返回表示此类组件类型的 Class。

异常

获取字符串数组的组件类型示例

以下示例演示了 java.lang.Class.getComponentType() 方法的用法。在这个程序中,我们创建了一个字符串数组的实例,然后使用 getClass() 方法检索实例的类。使用 getComponentType(),我们检索了类的组件类型,并将结果打印出来。

package com.tutorialspoint;

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

获取 List 类的组件类型示例

以下示例演示了 java.lang.Class.getComponentType() 方法的用法。在这个程序中,检索了 List 类的类。使用 getComponentType(),我们检索了类的组件类型,并将结果打印出来。

package com.tutorialspoint;

import java.util.List;

public class ClassDemo {

   public static void main(String[] args) {

      // returns the Class representing the component type
      Class arrClass = List.class;
      Class componentType = arrClass.getComponentType();
      if (componentType != null) {
         System.out.println("ComponentType = " + componentType.getName());
      } else {
         System.out.println("ComponentType is null");
      }
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

ComponentType is null

获取 Integer 类的组件类型示例

以下示例演示了 java.lang.Class.getComponentType() 方法的用法。在这个程序中,检索了 Integer 类的类。使用 getComponentType(),我们检索了类的组件类型,并将结果打印出来。

package com.tutorialspoint;

public class ClassDemo {

   public static void main(String[] args) {

      // returns the Class representing the component type
      Class arrClass = Integer.class;
      Class componentType = arrClass.getComponentType();
      if (componentType != null) {
         System.out.println("ComponentType = " + componentType.getName());
      } else {
         System.out.println("ComponentType is null");
      }
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

ComponentType is null
java_lang_class.htm
广告