📌  相关文章
📜  Java中的 ThaiBuddhistDate hashCode() 方法与示例

📅  最后修改于: 2022-05-13 01:55:17.976000             🧑  作者: Mango

Java中的 ThaiBuddhistDate hashCode() 方法与示例

Java.time.chrono.ThaiBuddhistDate类的hashCode()方法用于获取特定 ThaiBuddhist 日期的哈希码。

句法:

public int hashCode()

参数:此方法不接受任何参数作为参数。

返回值:此方法返回特定 ThaiBuddhist 日期的哈希码。

以下是说明hashCode()方法的示例:

示例 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);
        }
    }
}
输出:
Hashcode: 143308498

示例 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);
        }
    }
}
输出:
Hashcode: 145524252

参考: https://docs.oracle.com/javase/9/docs/api/ Java/time/chrono/ThaiBuddhistDate.html#hashCode–