Java中的 DecimalFormat setParseBigDecimal() 方法
Java中DecimalFormat类的setParseBigDecimal()方法用于设置DecimalFormat类的parse()方法是否返回BigInteger类型的值。如果此方法设置为 true,则 parse() 方法将返回 BigDecimal 值。
语法:
public void setParseBigDecimal(boolean newValue)
参数:此方法接受布尔类型的单个参数newValue 。如果此值设置为 true,则 parse() 方法将返回 BigDecimal 值。
返回值:此方法不返回任何值。
下面的程序说明了上述方法:
程序 1 :
// Java program to illustrate the
// setParseBigDecimal() method
import java.text.DecimalFormat;
public class GFG {
public static void main(String[] args)
{
// Create a DecimalFormat instance
DecimalFormat deciFormat = new DecimalFormat();
deciFormat.setParseBigDecimal(true);
System.out.println(deciFormat.isParseBigDecimal());
}
}
输出:
true
方案二:
// Java program to illustrate the
// setParseBigDecimal() method
import java.text.DecimalFormat;
public class GFG {
public static void main(String[] args)
{
// Create a DecimalFormat instance
DecimalFormat deciFormat = new DecimalFormat();
deciFormat.setParseBigDecimal(false);
System.out.println(deciFormat.isParseBigDecimal());
}
}
输出:
false
参考:https: Java/text/DecimalFormat.html#setParseBigDecimal(boolean)