Open In App

MonthDay getMonth() method in Java with Examples

Last Updated : 21 Jun, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The getMonth() method of MonthDay class in Java obtains an instance of MonthDay from a temporal object. 

Syntax:

public Month getMonth()

Parameter: This method accepts no parameters. 

Returns: The function returns the month-of-year and not null. 

Below programs illustrate the MonthDay.getMonth() method: 

Program 1: 

Java




// Program to illustrate the getMonth() method
 
import java.util.*;
import java.time.*;
 
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        MonthDay tm1 = MonthDay.parse("--12-06");
 
        // Uses the function
        LocalDate dt1 = tm1.atYear(2018);
 
        // Prints the date
        System.out.println(dt1.getMonth());
    }
}


Output:

DECEMBER

Program 2: 

Java




// Program to illustrate the getMonth() method
 
import java.util.*;
import java.time.*;
 
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        MonthDay tm1 = MonthDay.parse("--01-09");
 
        // Uses the function
        LocalDate dt1 = tm1.atYear(2016);
 
        // Prints the date
        System.out.println(dt1.getMonth());
    }
}


Output:

JANUARY

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#getMonth–



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads