ZoneId hashCode() example
Description
ZoneId hashCode()
returns a hash code for this time-zone ID.
Syntax
hashCode
has the following syntax.
public int hashCode()
Example
The following example shows how to use hashCode
.
import java.time.ZoneId;
//from w ww . ja v a 2s. c o m
public class Main {
public static void main(String[] args) {
ZoneId z = ZoneId.systemDefault();
System.out.println(z.hashCode());
}
}
The code above generates the following result.