Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My Java program is centered around high precision calculations, which need to be accurate to at least 120 decimal places.
Consequentially, all non-integer numbers will be represented by BigDecimals in the program.

Obviously I need to specify the accuracy of the rounding for the BigDecimals, to avoid infinite decimal expressions etc.
Currently, I find it a massive nuisance to have to specify the accuracy at every instantiation or mathematical operation of a BigDecimal.

Is there a way to set a 'global accuracy' for all BigDecimal calculations?
(Such as the Context.prec() for the Decimal module in python)

Thanks


Specs:
Java jre7 SE
Windows 7 (32)

share|improve this question

6 Answers

up vote 2 down vote accepted

(Almost) Original

Not as simple, but you can create a MathContext and pass it to all your BigDecimal constructors and the methods performing operations.

Revised

Alternatively, you can extend BigDecimal and override any operations you want to use by supplying the right MathContext, and using the rounding version of divide:

public class MyBigDecimal extends BigDecimal {

      private static MathContext context = new MathContext(120, RoundingMode.HALF_UP);

      public MyBigDecimal(String s) {
           super(s, context);
      }
      public MyBigDecimal(BigDecimal bd) {
           this(bd.toString()); // (Calls other constructor)
      }
      ...
      public MyBigDecimal divide( BigDecimal divisor ){
           return new MyBigDecimal( super.divide( divisor, context ) );
      }
      public MyBigDecimal add( BigDecimal augend ){
           return new MyBigDecimal( super.add( augend ) );
      }
      ...
}
share|improve this answer
That's exactly what I want to avoid. – Anti Earth Apr 8 '12 at 3:51
I'm actually having some difficulty using the class extension. If I have 2 BigDecimals representing "1" and "3", both of which have scale set to 120... Dividing "1" by "3" still produces a non-terminating decimal, even if I assign the result a scale of 120 as well! (Which was what I was originally trying to avoid; extra parameters to math operations). – Anti Earth Apr 8 '12 at 4:00
I think that you can fix that by similarly overriding the divide method for your class. – trutheality Apr 8 '12 at 4:02
1  
It's trying to be as exact as possible, which means trying to never round unless asked to. The divide override is simple, you just wrap the rounding divide. Now that I think about it, it would be a good idea to override other operations are using to make sure that they are returning an instance of your class and not a regular BigDecimal. – trutheality Apr 8 '12 at 4:09
1  
Unfortunately, you will still need to superclass the constructor if you want to use a number.divide(otherNumber); syntax, because you need number to be of type MyBigDecimal and not BigDecimal. Another option is to just forget about subclassing and write a static BigDecimal divide( BigDecimal a, BigDecimal b ){ a.divide(b,context);}; function and use it instead of the one provided. – trutheality Apr 8 '12 at 5:38
show 8 more comments

You could create a class that extends BigDecimal and sets the precision automatically for you. Then you just use you that class.

public class MyBigDecimal extends BigDecimal {
      public MyBigDecimal(double d) {
           super(d);
           this.setScale(120, BigDecimal.ROUND_HALF_UP);
      }
      ...
}
share|improve this answer
2  
This only works if the wrapper also wraps all of the BigDecimal operations that create a new instance. – Stephen C Apr 8 '12 at 4:18

Create a BigDecimalFactory class with static factory methods matching all constructors that accept MathContext - except that the MathContext instance is inside the factory and statically initialized at startup time. Here's a fragment:

public class BigDecimalFactory {
    public static BigDecimal newInstance (BigInteger unscaledVal, int scale) {
        return new BigDecimal (unscaledVal, scale, _mathContext);
    }

    // . . . other factory methods for other BigDecimal constructors

    private static final MathContext _mathContext = 
        new MathContext (120, BigDecimal.ROUND_HALF_UP);
}
share|improve this answer
This won't work ... if I read the javadoc correctly. The primary reason is that the constructor you are using uses the MathContext for the conversion only. It is not attached to the resulting BigDecimal object. – Stephen C Apr 8 '12 at 4:06
That means that the precision constraint won't apply to operations performed on the BigDecimal instances created with the factory ... unless you supply the MathContext as an argument to to relevant operation. – Stephen C Apr 8 '12 at 4:15
Argh! You're right. I mentioned your comments in one of the other threads in this post so that people know. – sparc_spread Apr 8 '12 at 4:53

Is there a way to set a 'global accuracy' for all BigDecimal calculations?

No.

You'll have to create a wrapper class that has a MathContext as an extra attribute. It will need to:

  • use this mc for each mathematical operation that would otherwise use the default semantics, and

  • create and return another wrapped instance each time the wrapped operation returns a regular instance.

(As a variation, you could implement a 'global' MathContext using a static, but you'll still need to use wrappering to ensure that the mc is used.)

(Extending BigDecimal would work too, and that is arguable neater than a wrapper class.)

share|improve this answer

You can use the BigDecimal setScale function!

BigDecimal db = new BigDecimal(<number>).setScale(120, BigDecimal.ROUND_HALF_UP); (or down)
share|improve this answer
I would still have to perform this at every instantiation of a BigDecimal. – Anti Earth Apr 8 '12 at 3:44

You can create a wrapper for BigDecimals, which will do this job:

 class BigDecimalWrapper {
     BigDecimal bd;   

     BigDecimalWrapper add(BigDecimalWrapper another) {
         BigDecimal r = this.bd.add(another.bd);
         r.setScale(...);
         bd = r;
         return this;
     }
     // and so on for other operations
 }

In this case you don't have to override all operation of BigDecimal (in extending case), just ones you use. It gives you control over all instances and doesn't force to follow BigDecimal contract.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.