OffsetTime hashCode() example
Description
OffsetTime hashCode()
returns a hash code for this time.
Syntax
hashCode
has the following syntax.
public int hashCode()
Example
The following example shows how to use hashCode
.
import java.time.OffsetTime;
/*w w w .jav a2 s . c om*/
public class Main {
public static void main(String[] args) {
OffsetTime m = OffsetTime.now();
System.out.println(m.hashCode());
}
}
The code above generates the following result.