Java Date Time - Year hashCode() example








Year hashCode() returns a hash code for this year.

Syntax

hashCode has the following syntax.

public int hashCode()

Example

The following example shows how to use hashCode.

import java.time.Year;
//from  w  w w . ja  va2  s.  co m
public class Main {
  public static void main(String[] args) {
    
    Year y = Year.of(2014);

    System.out.println(y.hashCode());

  }
}

The code above generates the following result.