El método getMonthValue() de la clase YearMonth en Java se usa para obtener el valor del campo de mes de esta instancia YearMonth con la que se usa. Devuelve el valor del campo del mes como un número entero entre 1 y 12 que indica los meses de enero a diciembre.
Sintaxis :
public int getMonthValue()
Parámetro : Este método no acepta ningún parámetro.
Valor devuelto : Devuelve el valor del campo del mes como un número entero entre 1 y 12 que indica los meses de enero a diciembre.
Los siguientes programas ilustran el método getMonthValue() de YearMonth en Java:
Programa 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()); } }
Producción:
8
Programa 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()); } }
Producción:
5
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#getMonthValue–