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 name of the class
        String name = cls.getName();
        System.out.println("Class Name = " + name);

        // returns the simple name of the class
        String sname = cls.getSimpleName();
        System.out.println("Class SimpleName = " + sname);
    }
}