Java Date Time - LocalTime hashCode() example








LocalTime hashCode() returns a hash code for this time.

Syntax

hashCode has the following syntax.

public int hashCode()

Example

The following example shows how to use hashCode.

import java.time.LocalTime;

public class Main {
  public static void main(String[] args) {
    LocalTime l = LocalTime.now();

    System.out.println(l.hashCode());
  }
}

The code above generates the following result.