getMaximumIntegerDigits()方法是Java中java.text.DecimalFomrat類的內置方法,用於獲取Number的整數部分所允許的最大位數。數字中的整數部分定義為小數點(。)之前的部分。例如,在數字123、45.678中,整數部分是123、45。
用法:
public int getMaximumIntegerDigits()
參數:該函數不接受任何參數。
返回值:該函數返回數字整數部分中允許的最大位數。
下麵是上述函數的實現:
程序1:
// Java program to illustrate the
// getMaximumIntegerDigits() 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 Maximum Integral digits allowed
System.out.println(deciFormat.getMaximumIntegerDigits());
}
}
輸出:
2147483647
程序2:
// Java program to illustrate the
// getMaximumIntegerDigits() 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 Maximum Integral digits allowed
System.out.println(deciFormat.getMaximumIntegerDigits());
}
}
輸出:
2147483647
參考: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#getMaximumIntegerDigits()
相關用法
- Java NumberFormat getMaximumIntegerDigits()用法及代碼示例
- Java DecimalFormat clone()用法及代碼示例
- Java DecimalFormat setCurrency()用法及代碼示例
- Java DecimalFormat equals()用法及代碼示例
- Java DecimalFormat getMinimumIntegerDigits()用法及代碼示例
- Java DecimalFormat getMinimumFractionDigits()用法及代碼示例
- Java DecimalFormat setMinimumFractionDigits()用法及代碼示例
- Java DecimalFormat getNegativeSuffix()用法及代碼示例
- Java DecimalFormat toLocalizedPattern()用法及代碼示例
- Java DecimalFormat applyLocalizedPattern()用法及代碼示例
- Java DecimalFormat applyPattern()用法及代碼示例
- Java DecimalFormat getNegativePrefix()用法及代碼示例
- Java DecimalFormat setNegativeSuffix()用法及代碼示例
- Java DecimalFormat getMaximumFractionDigits()用法及代碼示例
- Java DecimalFormat getGroupingSize()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 DecimalFormat getMaximumIntegerDigits() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。