Being a Java developer in an agile development cycle, I have learnt that it is essential to make sure I design my classes in a manner that I can refactor them easily without much of a pain. I want to know, what are the best practices that you follow in your daily design/development cycle that helps you to perform refactoring easily.
For example, I know that I should hide the implementation details behind an interface. So that event if I am changing the implementation tomorrow, I am not disturbing the client code which consumes this APIs. Similarly I should use “factory design pattern” wherever possible so that the change of implementation classes can be controlled from one factory class rather than find out all the places and change them.
Similarly I would like to know what all best practices that you are following which will help me.
|
|
|
|||
|
|
Use TDD. Seriously. Writing tests while you write your classes forces you to think about how they will be used by others. You'll tend to write better abstractions when you do this. Entire books have been written on this subject:
Each one of these touches on this subject in its own unique way. |
|||
|
|
|
You should have a bunch of unit tests that can prove the codebase was not (inadvertantly) affected each time you refactor. |
||
|
|
|
|
This may sound like a bit of circular reasoning but I find it to be true in my experience: Refactor it a lot. Many of the answers here (especially a strong test suite) are great advice and help a lot, so let me be clear in saying that I'm all for those pre-emptive measures as well. At first, it's always easy to change (when it's small). Then, you generally have to go through a few bouts of tough refactoring before you have a breakthrough and get something that is really supple. |
||
|
|
|
My answer relates to what constitutes a good result after the refactoring. Methods should be...
|
||||||||||||
|
|
|
I would recommend picking up two books if you're going to be doing a lot of java. I'd recommend Effective Java [http://www.amazon.com/Effective-Java-2nd-Joshua-Bloch/dp/0321356683/ref=sr_1_3?ie=UTF8&s=books&qid=1242187051&sr=8-3] And Design Patterns: Elements of Reusable Object-Oriented Software[http://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/0201633612/ref=sr_1_2?ie=UTF8&s=books&qid=1242187116&sr=8-2] |
||
|
|
|
|
Don't copy and paste (also known as DRY: Don't Repeat Yourself). When any given functionality is implemented in no more than one place, then it's easier to reimplement that functionality. |
|||
|
|

privatewithin a class. – ChrisW May 13 at 4:01