减数
int reduce(int reduction) { if (this.isNullOrZero) { return -reduction; } return this ?? 0 - reduction; }