Exemple de méthode java.time.Month.firstMonthOfQuarter ()

La description

le java.time.Month.firstMonthOfQuarter() méthode obtient le mois correspondant au premier mois de ce trimestre.

Déclaration

Voici la déclaration pour java.time.Month.firstMonthOfQuarter() méthode.

public Month firstMonthOfQuarter()

Valeur de retour

le premier mois du trimestre correspondant à ce mois, non nul.

Exemple

L'exemple suivant montre l'utilisation de la méthode java.time.Month.firstMonthOfQuarter ().

package com.tutorialspoint;

import java.time.Month;

public class MonthDemo {
   public static void main(String[] args) {
 
      Month month = Month.of(3);
      System.out.println(month.firstMonthOfQuarter());  
   }
}

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

JANUARY