GregorianCalendar() constructor from GregorianCalendar has the following syntax.
public GregorianCalendar()
In the following code shows how to use GregorianCalendar.GregorianCalendar() constructor.
import java.util.GregorianCalendar; // www. j a v a 2s. c o m public class Main { public static void main(String[] args) { GregorianCalendar cal = new GregorianCalendar(); System.out.println(cal.getTime()); } }
The code above generates the following result.