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()
相关用法
- Java DecimalFormat setDecimalSeparatorAlwaysShown()用法及代码示例
- Java DecimalFormat setGroupingSize()用法及代码示例
- Java DecimalFormat setMaximumFractionDigits()用法及代码示例
- Java DecimalFormat setMaximumIntegerDigits()用法及代码示例
- Java DecimalFormat setCurrency()用法及代码示例
- Java DecimalFormat setMinimumIntegerDigits()用法及代码示例
- Java DecimalFormat setMinimumFractionDigits()用法及代码示例
- Java DecimalFormat setMultiplier()用法及代码示例
- Java DecimalFormat setRoundingMode()用法及代码示例
- Java DecimalFormat setDecimalFormatSymbols()用法及代码示例
- Java DecimalFormat getRoundingMode()用法及代码示例
- Java DecimalFormat getDecimalFormatSymbols()用法及代码示例
- Java DecimalFormat getCurrency()用法及代码示例
- Java DecimalFormat equals()用法及代码示例
- Java DecimalFormat clone()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 DecimalFormat hashCode() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。