BigDecimal(char[] in) constructor from BigDecimal has the following syntax.
public BigDecimal(char[] in)
In the following code shows how to use BigDecimal.BigDecimal(char[] in) constructor.
import java.math.BigDecimal; //from ww w . j a v a 2 s.co m public class Main { public static void main(String[] args) { BigDecimal bg1 = new BigDecimal(new char[]{'1','2'}); System.out.println(bg1); } }
The code above generates the following result.