基本数值运算:加法 @param object @return
(Object object)
| 145 | * @return |
| 146 | */ |
| 147 | public Decimal add(Object object) { |
| 148 | this.bigDecimal = this.bigDecimal.add(new Decimal(object).getBigDecimal(), mathContext); |
| 149 | return this; |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * 减法 |
no test coverage detected