Suggestion on book to read about refactoring? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:32:06Z http://stackoverflow.com/feeds/question/520599 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/520599/suggestion-on-book-to-read-about-refactoring 0 Suggestion on book to read about refactoring? yesraaj 2009-02-06T15:02:31Z 2009-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#520608 1 Answer by Ritesh M Nayak for Suggestion on book to read about refactoring? Ritesh M Nayak 2009-02-06T15:06:21Z 2009-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#520609 1 Answer by ocdecio for Suggestion on book to read about refactoring? ocdecio 2009-02-06T15:06:36Z 2009-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#520612 2 Answer by Gambrinus for Suggestion on book to read about refactoring? Gambrinus 2009-02-06T15:07:23Z 2009-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#520616 0 Answer by alphadogg for Suggestion on book to read about refactoring? alphadogg 2009-02-06T15:09:19Z 2009-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#520620 9 Answer by graham.reeds for Suggestion on book to read about refactoring? graham.reeds 2009-02-06T15:09:31Z 2009-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#520624 1 Answer by Bill the Lizard for Suggestion on book to read about refactoring? Bill the Lizard 2009-02-06T15:09:58Z 2009-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#520628 0 Answer by ChrisW for Suggestion on book to read about refactoring? ChrisW 2009-02-06T15:10:47Z 2009-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#531098 2 Answer by Joshua Kerievsky for Suggestion on book to read about refactoring? Joshua Kerievsky 2009-02-10T04:54:47Z 2009-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&amp;album=foundations&amp;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>