Friday, November 21, 2025
HomeLanguagesJavaYearMonth getMonthValue() method in Java

YearMonth getMonthValue() method in Java

The getMonthValue() method of YearMonth class in Java is used to get the value of the month field from this YearMonth instance with which it is used. It returns the value of the month field as an integer between 1-12 denoting months from January to December.

Syntax:

public int getMonthValue()

Parameter: This method does not accepts any parameter.

Return Value: It returns the value of the month field as an integer between 1-12 denoting months from January to December.

Below programs illustrate the getMonthValue() method of YearMonth in Java:
Program 1:




// Program to illustrate the getMonthValue() method
  
import java.util.*;
import java.time.*;
import java.time.format.DateTimeFormatter;
  
public class GfG {
    public static void main(String[] args)
    {
  
        // Create a YearMonth object
        YearMonth thisYearMonth = YearMonth.of(2017, 8);
  
        // Get the month field
        System.out.println(thisYearMonth.getMonthValue());
    }
}


Output:

8

Program 2:




// Program to illustrate the getMonthValue() method
  
import java.util.*;
import java.time.*;
import java.time.format.DateTimeFormatter;
  
public class GfG {
    public static void main(String[] args)
    {
  
        // Create a YearMonth object
        YearMonth thisYearMonth = YearMonth.of(2018, 5);
  
        // Get the month field
        System.out.println(thisYearMonth.getMonthValue());
    }
}


Output:

5

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11997 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7166 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS