Suggestion on book to read about refactoring? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T05:32:06Zhttp://stackoverflow.com/feeds/question/520599http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/520599/suggestion-on-book-to-read-about-refactoring0Suggestion on book to read about refactoring?yesraaj2009-02-06T15:02:31Z2009-02-11T13:37:11Z
<p>Will it be easy for a C++ developer to read <a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring: Improving the Design of Existing Code</a></p>
<p>Is there any other book that I should read about refactoring? Feel free to add any articles on refactoring.</p>
http://stackoverflow.com/questions/520599/suggestion-on-book-to-read-about-refactoring/520608#5206081Answer by Ritesh M Nayak for Suggestion on book to read about refactoring?Ritesh M Nayak2009-02-06T15:06:21Z2009-02-06T15:06:21Z<p>Read a book called Refactoring by Martin Fowler.</p>
http://stackoverflow.com/questions/520599/suggestion-on-book-to-read-about-refactoring/520609#5206091Answer by ocdecio for Suggestion on book to read about refactoring?ocdecio2009-02-06T15:06:36Z2009-02-06T15:06:36Z<p>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.</p>
http://stackoverflow.com/questions/520599/suggestion-on-book-to-read-about-refactoring/520612#5206122Answer by Gambrinus for Suggestion on book to read about refactoring?Gambrinus2009-02-06T15:07:23Z2009-02-06T15:07:23Z<p>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.</p>
http://stackoverflow.com/questions/520599/suggestion-on-book-to-read-about-refactoring/520616#5206160Answer by alphadogg for Suggestion on book to read about refactoring?alphadogg2009-02-06T15:09:19Z2009-02-06T15:09:19Z<p><a href="http://rads.stackoverflow.com/amzn/click/0321213351" rel="nofollow">Refactoring to Patterns</a> by Joshua Kerievsky </p>
<p>Language used in the book shouldn't matter, the concept is what is important. This book is a practical approach to refactoring.</p>
http://stackoverflow.com/questions/520599/suggestion-on-book-to-read-about-refactoring/520620#5206209Answer by graham.reeds for Suggestion on book to read about refactoring?graham.reeds2009-02-06T15:09:31Z2009-02-06T15:09:31Z<p>If you work with legacy code then it may be worth getting <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code by Michael Feathers</a>.</p>
http://stackoverflow.com/questions/520599/suggestion-on-book-to-read-about-refactoring/520624#5206241Answer by Bill the Lizard for Suggestion on book to read about refactoring?Bill the Lizard2009-02-06T15:09:58Z2009-02-06T15:09:58Z<p>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. :)</p>
<p>The examples are all pretty straight-forward data classes that have a few responsibilities. You should have little trouble understanding what's going on.</p>
http://stackoverflow.com/questions/520599/suggestion-on-book-to-read-about-refactoring/520628#5206280Answer by ChrisW for Suggestion on book to read about refactoring?ChrisW2009-02-06T15:10:47Z2009-02-06T15:10:47Z<p>I'm a "C++ developer" and I found it easy and interesting, and I had no trouble understanding the examples.</p>
http://stackoverflow.com/questions/520599/suggestion-on-book-to-read-about-refactoring/531098#5310982Answer by Joshua Kerievsky for Suggestion on book to read about refactoring?Joshua Kerievsky2009-02-10T04:54:47Z2009-02-11T13:37:11Z<p>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#).</p>
<p>You can look at samples of this <a href="https://elearning.industriallogic.com/gh/submit?Action=AlbumContentsAction&album=foundations&devLanguage=Cpp" rel="nofollow">album here:</a> </p>
<p>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. <a href="https://elearning.industriallogic.com/gh/submit?Action=BrowseAlbumsAction" rel="nofollow">See</a> </p>