老实斑马

文章
6
资源
0
加入时间
2年10月18天

golang中的new和make到底有什么区别?

// The new built-in function allocates memory. The first argument is a type,// not a value, and the value returned is a pointer to a newly// allocated zero value of that type.func new(Type) *Typenew 开辟一块内存,用来存储Type类型的变量,返回指向该地址的指针。Type可以为所有类型。给变量赋值零

BigDecimal 使用方法详解

BigDecimal 由任意精度的整数非标度值 和 32 位的整数标度 (scale) 组成。如果为零或正数,则标度是小数点后的位数。如果为负数,则将该数的非标度值乘以 10 的负 scale 次幂。因此,BigDecimal 表示的数值是 (unscaledValue × 10-scale)。 可以处理任意长度的浮点数运算。 BigDecimal add(BigDecimal v