當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。