java.math.BigDecimal类multiply的使用
java.math.BigInteger.multiply(BigInteger val)返回一个BigInteger,其值是 (this * val).声明以下是java.math.BigInteger.multiply()方法的声明public BigInteger multiply(BigInteger val)参数 val- 通过此BigInteger乘以的值 返回值该方法返回一个BigInteger对象的值是 this * val.异常 NA 例...