vote up 0 vote down star

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.

flag

1 Answer

vote up 5 vote down check

I would spend whatever time necessary to make sure I understand what the algorithm actually does. Then I'd try to find out how I'd really solve the problem if I could choose, which would probably involve a number of classes & concepts. Then I'd try to introduce these concepts one by one into the existing code, making sure to get proper test coverage for each concept as I introduce it.

link|flag

Your Answer

Get an OpenID
or

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