ZoneOffset hashCode()
returns
a hash code for this offset.
hashCode
has the following syntax.
public int hashCode()
The following example shows how to use hashCode
.
import java.time.ZoneOffset; public class Main { public static void main(String[] args) { ZoneOffset z = ZoneOffset.UTC; System.out.println(z.hashCode()); } }
The code above generates the following result.