Exemple de méthode java.time.YearMonth.of ()
La description
le java.time.YearMonth.of(int year,Month month) La méthode obtient une instance de YearMonth à partir d'une année et d'un mois.
Déclaration
Voici la déclaration pour java.time.YearMonth.of(int year,Month month) méthode.
public static YearMonth of(int year,Month month)
Paramètres
year - l'année à représenter, de MIN_YEAR à MAX_YEAR.
month - le mois de l'année à représenter.
Valeur de retour
un YearMonth, non nul.
ExceptionsDateTimeException - 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.of (int years, int month).
package com.tutorialspoint;
import java.time.Month;
import java.time.YearMonth;
public class YearMonthDemo {
public static void main(String[] args) {
YearMonth year = YearMonth.of(2017,Month.DECEMBER);
System.out.println(year);
}
}
Compilons et exécutons le programme ci-dessus, cela produira le résultat suivant -
2017-12