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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。