El método getMonth() de la clase MonthDay en Java obtiene una instancia de MonthDay de un objeto temporal.
Sintaxis:
public Month getMonth()
Parámetro: Este método no acepta parámetros.
Devoluciones: la función devuelve el mes del año y no un valor nulo.
Los siguientes programas ilustran el método MonthDay.getMonth() :
Programa 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()); } }
Producción:
DECEMBER
Programa 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()); } }
Producción:
JANUARY
Referencia: https://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#getMonth–