MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

import java.lang.reflect.Array;

public class MainClass {
    public static void main(String args[]) {
        int[] object = { 1, 2, 3 };
        Class type = object.getClass();
        if (type.isArray()) {
            Class elementType = type.getComponentType();
            System.out.println("Array of: " + elementType);
            System.out.println("Length: " + Array.getLength(object));
        }
    }
}