Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

MonthDay getMonth() method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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–


My Personal Notes arrow_drop_up
Last Updated : 21 Jun, 2022
Like Article
Save Article
Similar Reads
Related Tutorials