Esempio di metodo java.time.MonthDay.hashCode ()

Descrizione

Il java.time.MonthDay.hashCode() metodo ottiene un codice hash per questo mese.

Dichiarazione

Di seguito è riportata la dichiarazione per java.time.MonthDay.hashCode() metodo.

public int hashCode()

Valore di ritorno

un codice hash adatto.

Esempio

Il seguente esempio mostra l'utilizzo del metodo 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());  
   }
}

Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:

798