El método hashCode() de la clase java.time.chrono.ThaiBuddhistDate se utiliza para obtener el código hash para la fecha particular de ThaiBuddhist.
Sintaxis:
public int hashCode()
Parámetro: Este método no acepta ningún argumento como parámetro.
Valor devuelto: este método devuelve el código hash para la fecha budista tailandesa en particular.
A continuación se muestran los ejemplos para ilustrar el método hashCode() :
Ejemplo 1:
// Java program to demonstrate // hashCode() method import java.util.*; import java.io.*; import java.time.*; import java.time.chrono.*; import java.time.temporal.*; public class GFG { public static void main(String[] argv) { try { // Creating and initializing // ThaiBuddhistDate Object ThaiBuddhistDate hidate = ThaiBuddhistDate.now(); // Getting hash code of the date // by using hashCode() method long tempo = hidate.hashCode(); // Display the result System.out.println( "Hashcode: " + tempo); } catch (DateTimeException e) { System.out.println( "Passed parameter can" + " not form a date"); System.out.println( "Exception thrown: " + e); } } }
Producción:
Hashcode: 143308498
Ejemplo 2:
// Java program to demonstrate // hashCode() method import java.util.*; import java.io.*; import java.time.*; import java.time.chrono.*; import java.time.temporal.*; public class GFG { public static void main(String[] argv) { try { // Creating and initializing // ThaiBuddhistDate Object ThaiBuddhistDate hidate = ThaiBuddhistDate.of(1345, 06, 13); // Getting hash code of the date // by using hashCode() method long tempo = hidate.hashCode(); // Display the result System.out.println( "Hashcode: " + tempo); } catch (DateTimeException e) { System.out.println( "Passed parameter can" + " not form a date"); System.out.println( "Exception thrown: " + e); } } }
Producción:
Hashcode: 145524252
Referencia: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ThaiBuddhistDate.html#hashCode–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA