Friday, October 17, 2025
HomeLanguagesJavaYear hashCode() method in Java with Examples

Year hashCode() method in Java with Examples

The hashCode() method of Year class in Java is used to get a suitable hash code for the current Year object.

Syntax:

public int hashCode()

Parameter: This method does not accepts any parameter.

Return Value: It returns a suitable integral hash code for the year object with which it is used. It never returns a NULL value.

Below programs illustrate the hashCode() method of Year in Java:
Program 1:




// Program to illustrate the hashCode() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Creates a Year object
        Year firstYear = Year.of(1997);
  
        // Print the hash code for
        // the current year object
        System.out.println(firstYear.hashCode());
    }
}


Output:

1997

Program 2:




// Program to illustrate the hashCode() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Creates a Year object
        Year firstYear = Year.of(2018);
  
        // Print the hash code for
        // the current year object
        System.out.println(firstYear.hashCode());
    }
}


Output:

2018

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#hashCode–

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS