vote up 0 vote down star
3

Will it be easy for a C++ developer to read Refactoring: Improving the Design of Existing Code

Is there any other book that I should read about refactoring? Feel free to add any articles on refactoring.

flag

Since the code examples are in java. – yesraaj Feb 6 at 15:03
I don't code in either C++ or Java on a remotely regular basis (I work in C); I can read both C++ and Java. The book is easily understood. – Jonathan Leffler Feb 10 at 4:59

8 Answers

vote up 9 vote down check

If you work with legacy code then it may be worth getting Working Effectively with Legacy Code by Michael Feathers.

link|flag
Agreed. I'm working my way through this now, and it really clarifies the use of these techniques on code that didn't have them from the start. – Ben Straub Feb 6 at 15:24
I agree this is more useful book for real world practice! – Ketan Feb 6 at 18:09
There's also a short PDF version here objectmentor.com/resources/articles/… – MarkJ Feb 6 at 22:41
vote up 2 vote down

As far as I know there is no book about refactoring, that has examples in c++. Mostly it is Java sometimes it is C#. But the basic concepts are the same - so I do not see the problem with language mix.

link|flag
vote up 2 vote down

I'm the author of Refactoring to Patterns. I have recently completed work on a multimedia album about Refactoring (in C++, Java, and soon, C#).

You can look at samples of this album here:

In addition, if you want to get good at recognizing what kind of code needs refactoring, you can consider studying my album on Code Smells as well. See

link|flag
vote up 1 vote down

Read a book called Refactoring by Martin Fowler.

link|flag
Yes, that's the one he's referring to. – ocdecio Feb 6 at 15:07
vote up 1 vote down

Easy? Maybe yes, maybe no. Fact of the matter is, this book should apply to C++ because the principles it defines are transferable to java-like languages (C#, C++). It is definitely a recommended read.

link|flag
vote up 1 vote down

Yes, Refactoring will be an easy read for a C++ developer. The code examples are in Java, but Fowler doesn't do anything in the book that's very specific to that language. He doesn't use Java's Reflection API or build an Enterprise Application. :)

The examples are all pretty straight-forward data classes that have a few responsibilities. You should have little trouble understanding what's going on.

link|flag
vote up 0 vote down

Refactoring to Patterns by Joshua Kerievsky

Language used in the book shouldn't matter, the concept is what is important. This book is a practical approach to refactoring.

link|flag
vote up 0 vote down

I'm a "C++ developer" and I found it easy and interesting, and I had no trouble understanding the examples.

link|flag

Your Answer

Get an OpenID
or

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