El método lastDayOfMonth() de una clase TemporalAdjusters se utiliza para devolver el objeto TemporalAdjuster «último día del mes», que devuelve un nuevo objeto Date establecido en el último día del mes.
Sintaxis:
public static TemporalAdjuster lastDayOfMonth()
Parámetros: Este método no acepta nada.
Valor devuelto: este método devuelve el último día del mes ajustador, no nulo.
Los siguientes programas ilustran el método TemporalAdjusters.lastDayOfMonth():
Programa 1:
// Java program to demonstrate // TemporalAdjusters.lastDayOfMonth() import java.time.LocalDate; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // get TemporalAdjuster with last day // of the month adjuster TemporalAdjuster temporalAdjuster = TemporalAdjusters.lastDayOfMonth(); // using adjuster for local date-time LocalDate localDate = LocalDate.of(2020, 05, 11); LocalDate lastDayOfMonth = localDate.with(temporalAdjuster); // print System.out.println("last day of the " + "month for localdate " + localDate + ": " + lastDayOfMonth); } }
Producción:
last day of the month for localdate 2020-05-11: 2020-05-31
Programa 2:
// Java program to demonstrate // TemporalAdjusters.lastDayOfMonth() method import java.time.LocalDate; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // get TemporalAdjuster with last day // of the month adjuster TemporalAdjuster temporalAdjuster = TemporalAdjusters .lastDayOfMonth(); // using adjuster for local date-time LocalDate localDate = LocalDate.of(2010, 12, 29); LocalDate lastDayOfMonth = localDate.with(temporalAdjuster); // print System.out.println("last day of the " + "month for localdate " + localDate + ": " + lastDayOfMonth); } }
Producción:
last day of the month for localdate 2010-12-29: 2010-12-31
Referencias: https://docs.oracle.com/javase/10/docs/api/java/time/format/TemporalAdjusters.html
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA