当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java DecimalStyle hashCode()用法及代码示例


Java中的java.time.format.DecimalStyle类的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://docs.oracle.com/javase/10/docs/api/java/time/format/DecimalStyle.html#hashCode()



相关用法


注:本文由纯净天空筛选整理自srinam大神的英文原创作品 DecimalStyle hashCode() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。