BigDecimal.pow(int n, MathContext mc) has the following syntax.
public BigDecimal pow(int n, MathContext mc)
In the following code shows how to use BigDecimal.pow(int n, MathContext mc) method.
/*ww w . ja v a 2 s . com*/ import java.math.BigDecimal; import java.math.MathContext; public class Main { public static void main(String[] args) { MathContext mc = new MathContext(4); // 4 precision BigDecimal bg1 = new BigDecimal("2.17"); BigDecimal bg2 = bg1.pow(3, mc); System.out.println(bg2); } }
The code above generates the following result.