Java 中的十进制格式符号 hashCode()方法,示例
原文:https://www . geesforgeks . org/decimal format symbols-hashcode-method-in-Java-with-examples/
的 hashCode() 方法。Java 中的抽取格式符号类用来获取这个抽取格式符号的 hashCode 值。这个方法返回一个代表 hashCode 值的整数。
语法:
public int hashCode()
参数:此方法不接受任何参数。
返回值:这个方法返回一个 int,它是这个十进制格式符号的哈希值。
异常:这个方法不抛出任何异常。
程序:
// Java program to demonstrate
// the above method
import java.text.*;
import java.util.*;
public class DecimalFormatSymbolsDemo {
public static void main(String[] args)
{
DecimalFormatSymbols dfs
= new DecimalFormatSymbols();
System.out.println("DecimalFormatSymbols: "
+ dfs);
System.out.println("HashCode value: "
+ dfs.hashCode());
}
}
输出:
DecimalFormatSymbols: java.text.DecimalFormatSymbols@1073a
HashCode value: 67386
参考:ahttps://docs . Oracle . com/javase/9/docs/API/Java/text/分米格式符号. html # hashCode–
版权属于:月萌API www.moonapi.com,转载请注明出处