Thursday, June 11, 2026
HomeLanguagesJavaDecimalStyle hashCode() method in Java with Example

DecimalStyle hashCode() method in Java with Example

The hashCode() method of java.time.format.DecimalStyle class in Java is used to get the hashCode value of this DecimalStyle. This method returns an integer representing the hashCode value.

Syntax:

public int hashCode()

Parameter: This method do not accept any parameter.

Return Value: This method returns an int value which is the hashCode value of this DecimalStyle.

Exception: This method do not throw any Exception.

Program:




// Java program to demonstrate
// the above method
  
import java.time.format.*;
import java.util.*;
  
public class DecimalStyleDemo {
    public static void main(String[] args)
    {
  
        DecimalStyle ds1
            = DecimalStyle.STANDARD;
  
        DecimalStyle ds2
            = DecimalStyle.of(new Locale("JAPANESE"));
  
        System.out.println("HashCode value of DS 1: "
                           + ds1.hashCode());
  
        System.out.println("HashCode value of DS 2: "
                           + ds2.hashCode());
    }
}


Output:

HashCode value of DS 1: 182
HashCode value of DS 2: 182

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/format/DecimalStyle.html#hashCode()

RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS