Exemple de méthode java.time.MonthDay.hashCode ()

La description

le java.time.MonthDay.hashCode() La méthode obtient un code de hachage pour ce mois-jour.

Déclaration

Voici la déclaration pour java.time.MonthDay.hashCode() méthode.

public int hashCode()

Valeur de retour

un code de hachage approprié.

Exemple

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

package com.tutorialspoint;

import java.time.MonthDay;

public class MonthDayDemo {
   public static void main(String[] args) {
 
      MonthDay time = MonthDay.parse("--12-30");
      System.out.println(time.hashCode());  
   }
}

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

798