Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

public class Main {

    public static void main(String[] args) {

        Main c = new Main();
        Class cls = c.getClass();

        // returns the canonical name of the underlying class if it exists
        System.out.println("Class = " + cls.getCanonicalName());
    }
}