setMinimumIntegerDigits()方法是Java中java.text.DecimalFomrat类的内置方法,用于设置数字的整数部分所允许的最小位数。数字的整数部分是显示在小数点(.)符号之前的部分。
用法:
public void setMinimumIntegerDigits(int newVal)
参数:该函数接受单个参数newVal,这是为此DecimalFormat实例允许设置的最小整数位数的新值。
返回值:该函数不返回任何值。
下面是上述函数的实现:
程序1:
// Java program to illustrate the
// setMinimumIntegerDigits() 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.setMinimumIntegerDigits(6);
System.out.println(deciFormat.format(1234.34));
}
}
输出:
001, 234.34
程序2:
// Java program to illustrate the
// setMinimumIntegerDigits() 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.setMinimumIntegerDigits(2);
System.out.println(deciFormat.format(1234.34));
}
}
输出:
1, 234.34
参考: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#setMinimumIntegerDigits(int)
相关用法
- Java NumberFormat setMinimumIntegerDigits()用法及代码示例
- Java DecimalFormat hashCode()用法及代码示例
- Java DecimalFormat applyPattern()用法及代码示例
- Java DecimalFormat setMaximumIntegerDigits()用法及代码示例
- Java DecimalFormat setMaximumFractionDigits()用法及代码示例
- Java DecimalFormat setGroupingSize()用法及代码示例
- Java DecimalFormat setDecimalSeparatorAlwaysShown()用法及代码示例
- Java DecimalFormat setMultiplier()用法及代码示例
- Java DecimalFormat setRoundingMode()用法及代码示例
- Java DecimalFormat setDecimalFormatSymbols()用法及代码示例
- Java DecimalFormat setCurrency()用法及代码示例
- Java DecimalFormat getRoundingMode()用法及代码示例
- Java DecimalFormat applyLocalizedPattern()用法及代码示例
- Java DecimalFormat getGroupingSize()用法及代码示例
- Java DecimalFormat getMaximumFractionDigits()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 DecimalFormat setMinimumIntegerDigits() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。