当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java BigDecimal scale()用法及代码示例


java.math.BigDecimal.scale()是java中的一个内置方法,该方法返回此BigDecimal的小数位数。

  • 对于零或正值,小数位数是小数点右边的位数。
  • 对于负值,数字的未标度值乘以十,即标度取反的幂。

用法:

public int scale()

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


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

以下示例程序旨在说明上述方法的用法:

示例1:

// 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

示例2:

// 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://docs.oracle.com/javase/7/docs/api/java/math/BigDecimal.html#scale()



相关用法


注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 BigDecimal scale() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。