vote up 0 vote down star

Hi All,

I am a java programmer. I recently have embarked on a refactoring project and so wanted to get some suggestions on any good books out there which can provide fast and practical insights for the same. I haven't done any refactoring projects before, and neither do I have much knowledge of design patterns yet, so some beginner level book is what I am looking for.

Thanks!

flag

50% accept rate
What do you mean by "a refactoring project"? Is it refactoring of a legacy application or something else? – Esko Luontola Jun 24 at 19:44

4 Answers

vote up 8 vote down check

Refactoring: Improving the Design of Existing Code by Martin Fowler

link|flag
Isn't that almost 9 years old?... – Ankush Jun 24 at 19:02
This book is timeless :) – Janusz Jun 24 at 19:05
+1. This is a very approachable book on the subject, as well as the refactoring "bible". A fine starting point. – Carl Manaster Jun 24 at 19:07
+1 i love that book, too – ammoQ Jun 24 at 19:52
vote up 0 vote down

Yes, the obvious choice is Refactoring by Martin Fowler. Make sure you have test coverage for anything you're refactoring though (if possible) :)

Combine that with the latest edition of Joshua Bloch's awesome Effective Java and you'll be well on your way to mastering not only Java, but the best approach to how things should be done. Both of these are important things to have when refactoring.

link|flag
vote up 1 vote down

Being that your a Java a programmer I would recommend Effective Java by Joshua Bloch. Knowing which patterns and techniques work best for Java is just as important as understanding the principles of refactoring code.

link|flag
vote up 4 vote down

There is also "Working Effectively With Legacy Code" by Michael Feathers.
It's about making changes in large complicated codebases

link|flag

Your Answer

Get an OpenID
or

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