I now have to refactor some code, its basically one method(its around 1000 lines of code) that does a lot of calculations and have a lot of variables. Im not sure how to refactor it, does code like
...
calculateSth(param1,param2,param3,param4,param5, params6);
calculateSthElse(param1,param2,param3);
...
looks good?
I could intreduce parameter objects, but those objects would only be used as params to some method, so it would look like this
...
calculateSth(calculateSthObject);
calculateSthElse(calculateSthElseObject);
...
or I could put everything in one big object and make it
...
calculateSth(calculateObject);
calculateSthElse(calculateObject);
...
however in that solution i would have to pull out everything that is needed in private methods on the begging of the method and set at the end and it would be a lot of harder to find out what values is used in private methods. around half of variables are needed as output.
How would you do it?
P.S. Calculation are not trivial, so doing things like
calculateObject.setMagicValue4((calculateObject.getMagicValue() * calculateObject.getMagicValue2() / calculateObject.getMagicValue3())
would only make it hard to read.
