El método getMonthValue() de la clase LocalDate 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 ningún parámetro.
Valor devuelto : la función devuelve el mes del año del 1 al 12 en números.
Los siguientes programas ilustran el método getMonthValue() de LocalDate en Java:
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 LocalDate dt = LocalDate.parse("2018-11-27"); // Prints the day number System.out.println(dt.getMonthValue()); } }
Producción:
11
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 LocalDate dt = LocalDate.parse("2018-01-02"); // Prints the day number System.out.println(dt.getMonthValue()); } }
Producción:
1
Referencia : https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getMonthValue()