Exemple de méthode java.time.Year.of ()

La description

le java.time.Year.of(int year) La méthode obtient une instance de Year à partir d'une année.

Déclaration

Voici la déclaration pour java.time.Year.of(int year) méthode.

public static Year of(int year)

Paramètres

year - l'année à représenter, de MIN_YEAR à MAX_YEAR.

Valeur de retour

un an, non nul.

Exceptions

DateTimeException - si la valeur du champ année n'est pas valide.

Exemple

L'exemple suivant montre l'utilisation de la méthode java.time.Year.of (int years).

package com.tutorialspoint;

import java.time.Year;

public class YearDemo {
   public static void main(String[] args) {

      Year year = Year.of(2017);
      System.out.println(year);     
   }
}

Compilons et exécutons le programme ci-dessus, cela produira le résultat suivant -

2017