setRoundingMode()方法是Java中java.text.DecimalFomrat類的內置方法,用於設置與此DecimalFormat實例一起使用的RoundingMode以舍入十進製數字。
用法:
public void setRoundingMode(RoundingMode roundingMode)
參數:該函數接受單個參數roundingMode,該參數是為此DecimalFormat實例設置的RoundingMode實例。
返回值:該函數不返回任何值。
下麵是上述函數的實現:
程序1:
// Java program to illustrate the
// setRoundingMode() method
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.math.RoundingMode;
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();
// Set the rounding mode as CEILING
deciFormat.setRoundingMode(RoundingMode.CEILING);
System.out.println(deciFormat.format(1234.5555));
}
}
輸出:
1, 234.556
程序2:
// Java program to illustrate the
// setRoundingMode() method
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.math.RoundingMode;
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();
// Set the rounding mode as HALF_DOWN
deciFormat.setRoundingMode(RoundingMode.HALF_DOWN);
System.out.println(deciFormat.format(1234.5555));
}
}
輸出:
1, 234.555
相關用法
- Java NumberFormat setRoundingMode()用法及代碼示例
- Java DecimalFormat hashCode()用法及代碼示例
- Java DecimalFormat setGroupingSize()用法及代碼示例
- Java DecimalFormat setParseBigDecimal()用法及代碼示例
- Java DecimalFormat setMaximumFractionDigits()用法及代碼示例
- Java DecimalFormat setMaximumIntegerDigits()用法及代碼示例
- Java DecimalFormat setMinimumIntegerDigits()用法及代碼示例
- Java DecimalFormat getPositivePrefix()用法及代碼示例
- Java DecimalFormat applyPattern()用法及代碼示例
- Java DecimalFormat getNegativeSuffix()用法及代碼示例
- Java DecimalFormat applyLocalizedPattern()用法及代碼示例
- Java DecimalFormat getNegativePrefix()用法及代碼示例
- Java DecimalFormat setDecimalSeparatorAlwaysShown()用法及代碼示例
- Java DecimalFormat setMinimumFractionDigits()用法及代碼示例
- Java DecimalFormat setNegativeSuffix()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 DecimalFormat setRoundingMode() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。