Java中的 DecimalStyle hashCode() 方法与示例
Java中Java类的hashCode()方法用于获取这个DecimalStyle的hashCode值。此方法返回一个表示 hashCode 值的整数。
句法:
public int hashCode()
参数:此方法不接受任何参数。
返回值:此方法返回一个int 值,该值是此 DecimalStyle 的 hashCode 值。
异常:此方法不抛出任何异常。
程序:
// 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());
}
}
输出:
HashCode value of DS 1: 182
HashCode value of DS 2: 182
参考: https: Java/time/format/DecimalStyle.html#hashCode()