Online Java Compiler By
JavaTpoint.com
public class ClassgetComponentTypeExample2 { public static void main(String... args) { int[] intarray = {}; System.out.println(intarray.getClass().getComponentType()); // print component type. System.out.println(String[].class.getComponentType()); // print component type. Void[] voidarray = {}; System.out.println(voidarray.getClass().getComponentType());// print component type. System.out.println(String.class.getComponentType());// print component type. } }
Output