El método firstDayOfNextMonth() de una clase TemporalAdjusters se usa para devolver el objeto TemporalAdjuster «primer día del próximo mes», que devuelve un nuevo objeto Fecha establecido en el primer día del próximo mes.
Sintaxis:
public static TemporalAdjuster firstDayOfNextMonth()
Parámetros: Este método no acepta nada.
Valor devuelto: este método devuelve el primer día del ajustador del mes siguiente, no nulo.
Los siguientes programas ilustran el método TemporalAdjusters.firstDayOfNextMonth():
Programa 1:
// Java program to demonstrate // TemporalAdjusters.firstDayOfNextMonth() import java.time.LocalDate; import java.time.temporal.TemporalAdjuster; import java.time.temporal.TemporalAdjusters; public class GFG { public static void main(String[] args) { // get TemporalAdjuster with first day // of next month adjuster TemporalAdjuster temporalAdjuster = TemporalAdjusters.firstDayOfNextMonth(); // using adjuster for local date time LocalDate localDate = LocalDate.of(2020, 05, 11); LocalDate firstDayOfNextMonth = localDate.with(temporalAdjuster); // print System.out.println("First day of next " + "month for localdate " + localDate + ": " + firstDayOfNextMonth); } }
Producción:
First day of next month for localdate 2020-05-11: 2020-06-01
Programa 2:
// Java program to demonstrate // TemporalAdjusters.firstDayOfNextMonth() method import java.time.LocalDate; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // get TemporalAdjuster with first day // of next month adjuster TemporalAdjuster temporalAdjuster = TemporalAdjusters .firstDayOfNextMonth(); // using adjuster for local date-time LocalDate localDate = LocalDate.of(2010, 12, 29); LocalDate firstDayOfNextMonth = localDate.with(temporalAdjuster); // print System.out.println( "First day of next " + "month for localdate " + localDate + ": " + firstDayOfNextMonth); } }
Producción:
First day of next month for localdate 2010-12-29: 2011-01-01
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