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 string representation of this class object
String str = cls.toString();
System.out.println("Class = " + str);
}
}