当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Class getComponentType()用法及代码示例


java.lang.Class类的getComponentType()方法用于获取表示数组组件类型的Class(如果该类表示一个)。否则,它返回null。

用法:

public Class getComponentType()

参数:此方法不接受任何参数。


返回值:如果此类表示一个数组的组件类型,则此方法返回Class。否则,它返回null。

下面的程序演示了getComponentType()方法。

示例1:

// Java program to demonstrate getComponentType() method 
  
import java.util.*; 
  
public class Test { 
    public static void main(String[] args) 
        throws ClassNotFoundException 
    { 
  
        // returns the Class object for this class 
        Class myClass = Class.forName("Test"); 
  
        System.out.println("Class represented by myClass: "
                           + myClass.toString()); 
  
        // Get the type of interfaces of myClass 
        // using getComponentType() method 
        System.out.println("ComponentType of myClass: "
                           + myClass.getComponentType()); 
    } 
}
输出:
Class represented by myClass: class Test
ComponentType of myClass: null

示例2:

// Java program to demonstrate getComponentType() method 
  
import java.util.*; 
  
public class Test { 
  
    public static void main(String[] args) 
        throws ClassNotFoundException 
    { 
  
        int[] Arr = new int[5]; 
  
        // returns the Class object 
        Class arrClass = Arr.getClass(); 
  
        // Get the ComponentType of arrClass 
        // using getComponentType() method 
        System.out.println("ComponentType of myClass: "
                           + arrClass.getComponentType()); 
    } 
}
输出:
ComponentType of myClass: int

参考: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#getComponentType–



相关用法


注:本文由纯净天空筛选整理自srinam大神的英文原创作品 Class getComponentType() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。