Java DecimalFormat getMinimumFractionDigits()方法
getMinimumFractionDigits() 方法是Java中 java.text.DecimalFomrat 类的一个内置方法,用于获取一个Number的小数或小数部分所允许的最小数字。
语法:
public int getMinimumFractionDigits()
参数 :该函数不接受任何参数。
返回值 :该函数返回一个数字的小数部分所允许的最小数字。
下面是上述函数的实现。
程序1 :
// Java program to illustrate the
// getMinimumFractionDigits() 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 Minimum fraction digits allowed
System.out.println(deciFormat.getMinimumFractionDigits());
}
}
输出:
0
程序2 :
// Java program to illustrate the
// getMinimumFractionDigits() 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();
deciFormat.applyPattern("##.##");
// Print the minimum fractional digits allowed
System.out.println(deciFormat.getMinimumFractionDigits());
}
}
输出:
0
参考资料 : https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#getMinimumFractionDigits()