El método getMonthValue() de la clase MonthDay en Java obtiene el campo del mes del año del 1 al 12.
Sintaxis:
public int getMonthValue()
Parámetro: Este método no acepta parámetros.
Devoluciones: La función devuelve el mes del año, del 1 al 12.
Los siguientes programas ilustran el método MonthDay.getMonthValue() :
Programa 1:
// Program to illustrate the getMonthValue() 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.getMonthValue()); } }
Producción:
12
Programa 2:
// Program to illustrate the getMonthValue() 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.getMonthValue()); } }
Producción:
1
Referencia: https://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#getMonthValue–