vote up 0 vote down star

With legacy code, how do you know when it's best to rewrite over refactoring?

flag

14% accept rate

closed as exact duplicate by Kev Sep 30 '08 at 2:14

4 Answers

vote up 0 vote down

One factor to look at: would it take less time to rewrite than to disect and refactor the code?

link|flag
vote up 0 vote down

And here:

http://stackoverflow.com/questions/35233/rewrite-or-repair

link|flag
vote up 0 vote down

I think the question is, how do you tell which would take less time, a complete rewrite or a refactor of existing code.

The answer probably has something to do with a different question: can you, upon glancing down the code, immediately see what chunks can be separated out into usable modules, and upon testing a positive answer by trying a few small cases, did the program break?

If you could not immediately see a way, or the program broke when you tried a few small cases, it was probably badly enough written that it needs a rewrite.

link|flag

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