Exemple de méthode java.time.YearMonth.withYear ()
La description
le java.time.YearMonth.withYear(int year) renvoie une copie de ce YearMonth avec l'année modifiée.
Déclaration
Voici la déclaration pour java.time.YearMonth.withYear(int year) méthode.
public YearMonth withYear(int year)
Paramètres
year - l'année à définir dans l'année-mois retournée, de MIN_YEAR à MAX_YEAR.
Valeur de retour
un YearMonth basé sur cela avec l'ajustement effectué, non nul.
Exceptions
DateTimeException - si la valeur de l'année n'est pas valide.
Exemple
L'exemple suivant montre l'utilisation de la méthode java.time.YearMonth.withYear (int year).
package com.tutorialspoint;
import java.time.YearMonth;
public class YearMonthDemo {
public static void main(String[] args) {
YearMonth date = YearMonth.parse("2017-12");
YearMonth result = date.withYear(2008);
System.out.println(result);
}
}
Compilons et exécutons le programme ci-dessus, cela produira le résultat suivant -
2008-12