Java中的 DecimalFormat setMaximumIntegerDigits() 方法
setMaximumIntegerDigits()方法是Java中Java .text.DecimalFomrat类的内置方法,用于设置数字的 Integral 部分允许的最大位数。数字的整数部分是显示在小数 (.) 符号之前的部分。
语法:
public void setMaximumIntegerDigits(int newVal)
参数:该函数接受单个参数newVal ,它是允许为此 DecimalFormat 实例设置的最大整数位数的新值。
返回值:该函数不返回任何值。
下面是上述函数的实现:
程序 1 :
// Java program to illustrate the
// setMaximumIntegerDigits() method
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
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.setMaximumIntegerDigits(6);
System.out.println(deciFormat.format(12345678.3456789));
}
}
输出:
345, 678.346
方案二:
// Java program to illustrate the
// setMaximumIntegerDigits() method
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
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.setMaximumIntegerDigits(6);
System.out.println(deciFormat.format(1234.3456789));
}
}
输出:
1, 234.346
参考:https: Java/text/DecimalFormat.html#setMaximumIntegerDigits(int)