Saturday, November 22, 2025
HomeLanguagesJavaWeekFields hashCode() method in Java with Examples

WeekFields hashCode() method in Java with Examples

The hashCode() method of WeekFields class is used to return the hash code for this WeekFields.It returns an integer value which is the hashCode value for this instance of the ValueRange.

Syntax:

public int hashCode()

Parameters: This method accepts nothing.

Return value: This method returns integer value which is the hashCode value.

Below programs illustrate the WeekFields.hashCode() method:
Program 1:




// Java program to demonstrate
// WeekFields.hashCode() method
  
import java.time.DayOfWeek;
import java.time.temporal.WeekFields;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create WeekFields
        WeekFields weekFields
            = WeekFields.of(DayOfWeek.MONDAY, 1);
  
        // apply hashCode()
        int hashCode = weekFields.hashCode();
  
        // print results
        System.out.println("Hash Code:"
                           + hashCode);
    }
}


Output:

Hash Code:1

Program 2:




// Java program to demonstrate
// WeekFields.hashCode() method
  
import java.time.DayOfWeek;
import java.time.temporal.WeekFields;
import java.util.Locale;
  
public class GFG {
    public static void main(String[] args)
    {
  
        Locale locale = new Locale("EN", "US");
  
        // create WeekFields
        WeekFields weekFields
            = WeekFields.of(locale);
  
        // apply hashCode()
        int hashCode = weekFields.hashCode();
  
        // print results
        System.out.println("Hash Code:"
                           + hashCode);
    }
}


Output:

Hash Code:43

References: https://docs.oracle.com/javase/10/docs/api/java/time/temporal/WeekFields.html#hashCode()

RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS