El método getDayOfMonth() de la clase MonthDay en Java obtiene el campo del día del mes.
Sintaxis:
public int getDayOfMonth()
Parámetro: Este método no acepta parámetros.
Devoluciones: La función devuelve el día del mes, del 1 al 31.
Los siguientes programas ilustran el método MonthDay.getDayOfMonth() :
Programa 1:
// Program to illustrate the getDayOfMonth() 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 day System.out.println(dt1.getDayOfMonth()); } }
Producción:
6
Programa 2:
// Program to illustrate the getDayOfMonth() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Parses the date MonthDay tm1 = MonthDay.parse("--01-19"); // Uses the function LocalDate dt1 = tm1.atYear(2018); // Prints the day System.out.println(dt1.getDayOfMonth()); } }
Producción:
19
Referencia: https://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#getDayOfMonth–