VOOZH about

URL: https://www.geeksforgeeks.org/java/bigdecimal-scale-method-in-java/

⇱ BigDecimal scale() Method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

BigDecimal scale() Method in Java

Last Updated : 4 Dec, 2018
The java.math.BigDecimal.scale() is an inbuilt method in java that returns the scale of this BigDecimal.
  • For zero or positive value, the scale is the number of digits to the right of the decimal point.
  • For negative value, the unscaled value of the number is multiplied by ten to the power of the negation of the scale.
Syntax:
public int scale()
Parameters: This method does not accepts any parameter. Return value: This method returns the scale of this BigDecimal object. Below program illustrates the working of the above mentioned method: Program 1:
Output:
The scale of 456.0 is 1
The scale of -1.456 is 3
Program 2:
Output:
The scale of 745 is 0
The scale of -174 is 0
Reference: https://docs.oracle.com/javase/7/docs/api/java/math/BigDecimal.html#scale()
Comment