Open In App

Calendar getInstance() Method in Java with Examples

Last Updated : 18 Feb, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The getInstance() method in Calendar class is used to get a calendar using the current time zone and locale of the system. Syntax:
public static Calendar getInstance()
Parameters: The method does not take any parameters. Return Value: The method returns the calendar. Below program illustrates the working of getInstance() Method of Calendar class: Example: Java
// Java code to illustrate
// getGreatestMinimum() method

import java.util.*;
public class Java_Calendar_Demo {
    public static void main(String args[])
    {
        // Creating a calendar
        Calendar calndr = Calendar.getInstance();

        // Display the date and time
        System.out.print("The system"
                         + " date and time is: " + calndr.getTime());
    }
}
Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html#getInstance()

Next Article
Practice Tags :

Similar Reads