BigDecimal(long val) constructor from BigDecimal has the following syntax.
public BigDecimal(long val)
In the following code shows how to use BigDecimal.BigDecimal(long val) constructor.
import java.math.BigDecimal; //from w w w. ja va2 s . com public class Main { public static void main(String[] args) { BigDecimal bg1 = new BigDecimal(123456789L); System.out.println(bg1); } }
The code above generates the following result.