LocalDateTime hashCode() example
Description
LocalDateTime 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.LocalDateTime;
/* w w w .j a va2s . c om*/
public class Main {
public static void main(String[] args) {
LocalDateTime a = LocalDateTime.now();
System.out.println(a.hashCode());
}
}
The code above generates the following result.