Exemple de méthode java.time.YearMonth.atEndOfMonth ()
La description
le java.time.YearMonth.atEndOfMonth() La méthode renvoie un LocalDate à la fin du mois.
Déclaration
Voici la déclaration pour java.time.YearMonth.atEndOfMonth() méthode.
public LocalDate atEndOfMonth()
Valeur de retour
la dernière date valide de cette année-mois, non nulle.
Exemple
L'exemple suivant montre l'utilisation de la méthode java.time.YearMonth.atEndOfMonth ().
package com.tutorialspoint;
import java.time.LocalDate;
import java.time.YearMonth;
public class YearMonthDemo {
public static void main(String[] args) {
YearMonth date = YearMonth.of(2015,12);
LocalDate date1 = date.atEndOfMonth();
System.out.println(date1);
}
}
Compilons et exécutons le programme ci-dessus, cela produira le résultat suivant -
2015-12-31