Friday, October 10, 2025
HomeLanguagesJavaOffsetTime hashCode() in Java with examples

OffsetTime hashCode() in Java with examples

The hashCode() method of OffsetTime class in Java is used to get a hash code for this Time instance.

Syntax :

public int hashCode()

Parameter: This method accepts does not accepts any parameters.

Return Value: It returns the a suitable hash code.

Below programs illustrate the hashCode() method:

Program 1 :




// Java program to demonstrate the hashCode() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the time
        OffsetTime time = OffsetTime.parse("15:10:30+07:00");
  
        // gets the hash-code in time
        System.out.println("hash-code: " + time.hashCode());
    }
}


Output:

hash-code: -1984024609

Program 2 :




// Java program to demonstrate the hashCode() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the time
        OffsetTime time = OffsetTime.parse("11:30:30+06:00");
  
        // gets the hash-code in time
        System.out.println("hash-code: " + time.hashCode());
    }
}


Output:

hash-code: 745450958

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#hashCode–

RELATED ARTICLES

Most Popular

Dominic
32348 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6715 POSTS0 COMMENTS
Nicole Veronica
11878 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6837 POSTS0 COMMENTS
Ted Musemwa
7097 POSTS0 COMMENTS
Thapelo Manthata
6792 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS