Method subtract(BigDecimal subtrahend)
Return type:
java.math.BigDecimal
Member of:
java.math.BigDecimal
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
myConstant = myConstant.subtract(aNmbr);
2
myBody[i] = myBody[i].subtract(val);
3
m_total = getTotal().subtract(wbl.getTotal());
4
m_DiscountAmt = m_ListAmt.subtract(LineNetAmt);
5
outData[row][col] = data[row][col].subtract(m.getEntry(row, col));
6
fraction = (s == 1) ? aTime.getFraction().add(aDuration.getFraction()) : aTime.getFraction().subtract(aDuration.getFraction());
7
return abd.subtract(bbd);
8
bp[i][j] = bp[i][j].subtract(bp[col][j].multiply(lu[i][col]));
9
fraction = fraction.subtract(one);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.