我必须在项目中多次声明和初始化 BigDecimal 包装器对象。那么通过java代码哪个更好:
BigDecimal num=new BigDecimal("123");
或者在NumberUtils
类中已经有一个静态方法可用
public static BigInteger createBigInteger(String str) {
if (str == null) {
return null;
}
return new BigInteger(str);
}
BigDecimal num=NumberUtils.createBigInteger("123");
请告诉我,当我们比较性能方面(内存和速度)时,哪种方法更好。