Skip to content

Instantly share code, notes, and snippets.

View 18826482473's full-sized avatar

han xianwei 18826482473

View GitHub Profile
import java.math.BigDecimal;
import java.util.function.BiFunction;
import java.util.function.Function;
public class BigNumChain {
private BigDecimal value;
public BigNumChain(Object value) {
this.value = convertBigDecimal(value, null);