Thursday, July 30, 2026
HomeLanguagesJavaChoiceFormat hashCode() method in Java with Examples

ChoiceFormat hashCode() method in Java with Examples

The hashCode() method of java.text.ChoiceFormat class is used to get the hash code for choice format object. This hashcode value is returned as an integer.

Syntax:

public int hashCode()

Parameter: This method does not accept any parameter.

Return Value: This method returns hash code for choice format object as an integer.

Below are the examples to illustrate the hashCode() method:

Example 1:




// Java program to demonstrate hashCode() method
  
import java.text.*;
import java.util.*;
import java.io.*;
  
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing ChoiceFormat
        ChoiceFormat cf
            = new ChoiceFormat(
                "4#wed| 5#thu | 6#fri | 7#sat");
  
        // getting hashcode of  ChoiceFormat object
        // using hashCode() method
        int hash = cf.hashCode();
  
        // display the result
        System.out.print("hashCode :- " + hash);
    }
}


Output:

hashCode :- 113634 

Example 2:




// Java program to demonstrate hashCode() method
  
import java.text.*;
import java.util.*;
import java.io.*;
  
public class GFG {
    public static void main(String[] argv)
    {
        // creating and initializing limit
        double[] limit = { 1, 2, 3, 4 };
  
        // creating and initializing format
        String[] format
            = { "add", "sub", "multiply", "divide" };
  
        // creating and initializing ChoiceFormat
        ChoiceFormat cf
            = new ChoiceFormat(limit, format);
  
        // getting hashcode of  ChoiceFormat object
        // using hashCode() method
        int hash = cf.hashCode();
  
        // display the result
        System.out.print("hashCode :- " + hash);
    }
}


Output:

hashCode :- -1331463043

Reference: https://docs.oracle.com/javase/9/docs/api/java/text/ChoiceFormat.html#hashCode–

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6981 POSTS0 COMMENTS
Umr Jansen
6973 POSTS0 COMMENTS