📜  Java中的 BigDecimal scale() 方法

📅  最后修改于: 2022-05-13 01:55:49.402000             🧑  作者: Mango

Java中的 BigDecimal scale() 方法

Java.math.BigDecimal.scale()是Java中的一个内置方法,它返回这个BigDecimal 的小数位数。

  • 对于正值,比例是小数点右侧的位数。
  • 对于负值,数字的未缩放值乘以 10 的负数次方。

句法:

public int scale()

参数:此方法不接受任何参数。

返回值:此方法返回此 BigDecimal 对象的比例。

下面的程序说明了上述方法的工作:

方案一:

// Java program to demonstrate the
// scale() method
  
import java.math.*;
  
public class Gfg {
  
    public static void main(String[] args)
    {
  
        BigDecimal b1 = new BigDecimal("456.0");
        BigDecimal b2 = new BigDecimal("-1.456");
  
        // Assign the result of scale on
        // BigDecimal Objects b1, b2 to int objects i1, i2
        int i1 = b1.scale();
        int i2 = b2.scale();
  
        // Print the values of i1, i2;
        System.out.println("The scale of " + b1 + " is " + i1);
        System.out.println("The scale of " + b2 + " is " + i2);
    }
}
输出:
The scale of 456.0 is 1
The scale of -1.456 is 3

方案二:

// Java program to demonstrate the
// scale() method
  
import java.math.*;
  
public class Gfg {
  
    public static void main(String[] args)
    {
  
        BigDecimal b1 = new BigDecimal("745");
        BigDecimal b2 = new BigDecimal("-174");
  
        // Assign the result of scale on
        // BigDecimal Objects b1, b2 to int objects i1, i2
        int i1 = b1.scale();
        int i2 = b2.scale();
  
        // Print the values of i1, i2;
        System.out.println("The scale of " + b1 + " is " + i1);
        System.out.println("The scale of " + b2 + " is " + i2);
    }
}
输出:
The scale of 745 is 0
The scale of -174 is 0

参考: https: Java/math/BigDecimal.html#scale()