Java DecimalFormat hashCode()方法
hashCode() 方法是Java中 java.text.DecimalFomrat 类的一个内置方法,用于为这个DecimalFormat实例获得一个积分hashCode值。
语法:
public int hashCode()
参数 :该函数不接受任何参数。
返回值 :该函数返回一个完整的hashCode值。
下面是上述函数的实现。
程序1 :
// Java program to illustrate the
// hashCode() method
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args)
{
// Create the DecimalFormat Instance
DecimalFormat deciFormat = new DecimalFormat();
// Print the hashCode value
System.out.println(deciFormat.hashCode());
}
}
输出:
423132
程序2 :
// Java program to illustrate the
// hashCode() method
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
import java.math.RoundingMode;
public class Main {
public static void main(String[] args)
{
// Create the DecimalFormat Instance
DecimalFormat deciFormat = new DecimalFormat();
deciFormat.getInstance(Locale.US);
// Print the hashCode Value
System.out.println(deciFormat.hashCode());
}
}
输出:
423132
参考资料 : https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#hashCode()