List of usage examples for java.util GregorianCalendar getClass
@HotSpotIntrinsicCandidate public final native Class<?> getClass();
From source file:Main.java
public static void main(String[] args) { // create a new Main object GregorianCalendar cal = new GregorianCalendar(); // print the class of cal System.out.println(cal.getClass()); }