除法 @param object @return
(Object object)
| 181 | * @return |
| 182 | */ |
| 183 | public Decimal div(Object object) { |
| 184 | this.bigDecimal = this.bigDecimal.divide(new Decimal(object).getBigDecimal(), mathContext); |
| 185 | return this; |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * 绝对值 |
nothing calls this directly
no test coverage detected