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