Saturday, February 14, 2026
HomeLanguagesJavaZoneId hashCode() method in Java with Examples

ZoneId hashCode() method in Java with Examples

The hashCode() method of the ZoneId class in Java is used to return unique hashcode for this ZoneId.

Syntax:

public int hashCode(Object obj)

Parameters: This method accepts nothing.

Return value: This method returns an int which represents the hashCode.

Below programs illustrate the hashCode() method:
Program 1:




// Java program to demonstrate
// ZoneId.hashCode() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create ZoneId object
        ZoneId zoneId
            = ZoneId.of("Europe/Paris");
  
        // get and print hashcode
        System.out.println("hashcode: "
                           + zoneId.hashCode());
    }
}


Output:

hashcode: -672549154

Program 2:




// Java program to demonstrate
// ZoneId.hashCode() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create ZoneId object
        ZoneId zoneId
            = ZoneId.of("Asia/Calcutta");
  
        // get and print hashcode
        System.out.println("hashcode: "
                           + zoneId.hashCode());
    }
}


Output:

hashcode: -681304890

Reference:
https://docs.oracle.com/javase/10/docs/api/java/time/ZoneId.html#hashCode()

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32503 POSTS0 COMMENTS
Milvus
129 POSTS0 COMMENTS
Nango Kala
6880 POSTS0 COMMENTS
Nicole Veronica
12002 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12094 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7253 POSTS0 COMMENTS
Thapelo Manthata
6963 POSTS0 COMMENTS
Umr Jansen
6954 POSTS0 COMMENTS