show/hide this revision's text 2 added 76 characters in body

Three good reasons to refactor:

  • Your original design (perhaps in a very small area, but design nonetheless) was wrong. This includes where you discover a common operation and want to share code.
  • You are designing iteratively.
  • The code is so bad that it needs major refurbishment.

Three good reasons not to refactor:

  • "This looks a little bit messy".
  • "I don't entirely agree with the way the last guy did this".
  • "It might be more efficient". (The problem there is 'might').

"Messy" is controversial - there is a valid argument variously called "fixing broken windows", or "code hygiene", which suggests that if you let small things slide, then you will start to let large things slide too. That's fine, and is a good thing to bear in mind, but remember that it's an analogy. It doesn't excuse shunting stuff around interminably, in search of the cleanest possible solution.

How often you refactor should depend on how often the good reasons occur, and how confident you are that your test process protects you from introducing bugs.

Refactoring is never a goal in itself. But if something doesn't work, it has to be fixed, and that's as true in initial development as it is in maintenance. It's For non-trivial changes it's almost always better to fix things by refactoring refactor, and incorporate the new concepts cleanly, than by patching bits onto patch a single place with great lumps of junk in order to avoid any change elsewhere.

For what it's worth, I think nothing of changing an interface provided that I have a handle on what uses it, and that the scope of the resulting change is manageable.

show/hide this revision's text 1

Three good reasons to refactor:

  • Your original design (perhaps in a very small area, but design nonetheless) was wrong.
  • You are designing iteratively.
  • The code is so bad that it needs major refurbishment.

Three good reasons not to refactor:

  • "This looks a little bit messy".
  • "I don't entirely agree with the way the last guy did this".
  • "It might be more efficient". (The problem there is 'might').

"Messy" is controversial - there is a valid argument variously called "fixing broken windows", or "code hygiene", which suggests that if you let small things slide, then you will start to let large things slide too. That's fine, and is a good thing to bear in mind, but remember that it's an analogy. It doesn't excuse shunting stuff around interminably, in search of the cleanest possible solution.

How often you refactor should depend on how often the good reasons occur, and how confident you are that your test process protects you from introducing bugs.

Refactoring is never a goal in itself. But if something doesn't work, it has to be fixed, and that's as true in initial development as it is in maintenance. It's almost always better to fix things by refactoring than by patching bits on.

For what it's worth, I think nothing of changing an interface provided that I have a handle on what uses it, and that the scope of the resulting change is manageable.