Thursday, September 4, 2025
HomeLanguagesJavaMinguoDate hashCode() method in Java with Example

MinguoDate hashCode() method in Java with Example

The hashCode() method of java.time.chrono.MinguoDate class is used to get the hash code for the particular Minguo date.

Syntax: 

public int hashCode()

Parameter: This method does not accept any argument as a parameter.

Return Value: This method returns the hash code for the particular Minguo date.

Below are the examples to illustrate the hashCode() method:

Example 1: 

Java




// 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
            // MinguoDate Object
            MinguoDate hidate = MinguoDate.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);
        }
    }
}


Output:

hashcode : -1990230825

Example 2:  

Java




// 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
            // MinguoDate Object
            MinguoDate hidate = MinguoDate.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);
        }
    }
}


Output:

hashcode : -1996123070

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/MinguoDate.html#hashCode–

RELATED ARTICLES

Most Popular

Dominic
32263 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11799 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11857 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6696 POSTS0 COMMENTS
Umr Jansen
6716 POSTS0 COMMENTS