ZonedDateTime hashCode() example
Description
ZonedDateTime hashCode()
returns a hash code for this date-time.
Syntax
hashCode
has the following syntax.
public int hashCode()
Example
The following example shows how to use hashCode
.
import java.time.ZonedDateTime;
/*from w ww . j a va2s .c o m*/
public class Main {
public static void main(String[] args) {
ZonedDateTime dateTime =ZonedDateTime.now();
System.out.println(dateTime.hashCode());
}
}
The code above generates the following result.