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