Move decimal point
BigDecimal movePointLeft(int n)
- decimal point moved n places to the left.
BigDecimal movePointRight(int n)
- decimal point moved n places to the right.
import java.math.BigDecimal;
public class Main {
public static void main(String[] args) {
BigDecimal first = new BigDecimal(10f);
System.out.println(first);
System.out.println(first.movePointLeft(1));
}
}
The output:
10
1.0
Home
Java Book
Essential Classes
Java Book
Essential Classes
BigDecimal:
- BigDecimal class
- Constants for One, Ten and Zero
- Rounding mode
- Create BigDecimals
- Methods used to do calculation
- Convert BigDecimal to primitive data types
- Compare two BigDecimal
- Move decimal point
- Scale and precision
- Convert BigDecimal to String
- Remove the trailing zeros
- Convert double and long to BigDecimal
- Calculating Euler's number e with BigDecimal