Exemple de méthode java.time.YearMonth.lengthOfMonth ()

La description

le java.time.YearMonth.lengthOfMonth() La méthode renvoie la longueur du mois en tenant compte de l'année.

Déclaration

Voici la déclaration pour java.time.YearMonth.lengthOfMonth() méthode.

public int lengthOfMonth()

Valeur de retour

la durée du mois en jours, de 28 à 31.

Exemple

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

package com.tutorialspoint;

import java.time.YearMonth;

public class YearMonthDemo {
   public static void main(String[] args) {
 
      YearMonth date = YearMonth.of(2016,12);
      System.out.println(date.lengthOfMonth());  
   }
}

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

31