Hi!
What do you think about implementing mutable
BigInteger and BigDecimal classes as part of a [math]
package?
Using BigDecimal for financial applications comes with
a big drawback: for every calculation a new BigDecimal
object is created since BigDecimals are immutable.
You might even need to create two BigDecimal per
calculation:
BigDecimal result = ...
result = result.plus(new BigDecimal(0.345f));
Or is there some other library you know of?
Victor
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>