Where to find resources on Refactoring? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T10:18:57Zhttp://stackoverflow.com/feeds/question/48817http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48817/where-to-find-resources-on-refactoring5Where to find resources on Refactoring? Kasper2008-09-07T21:40:27Z2009-05-03T16:07:10Z
<p>Refactoring is the process of improving the existing system design without changing its behavior.</p>
<p>Besides Martin Fowler's seminal book "<a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring - Improving the design of existing code</a>" and Joshua Kerievsky's book "<a href="http://rads.stackoverflow.com/amzn/click/0321213351" rel="nofollow">Refactoring to Patterns</a>", are there any good resources on refactoring? </p>
http://stackoverflow.com/questions/48817/where-to-find-resources-on-refactoring/48819#488193Answer by Ben Scheirman for Where to find resources on Refactoring? Ben Scheirman2008-09-07T21:44:46Z2008-09-07T21:44:46Z<p><a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code</a> focuses on dealing with existing code-bases that need to evolve to be testable. Many techniques are used in the book to accomplish this, and is an excellent resource for refactoring.</p>
http://stackoverflow.com/questions/48817/where-to-find-resources-on-refactoring/48828#488281Answer by Andrei for Where to find resources on Refactoring? Andrei2008-09-07T21:57:39Z2008-09-07T21:57:39Z<p>If you're looking for more than just code refactoring, you might find Scott Ambler's book quite useful: <a href="http://www.ambysoft.com/books/refactoringDatabases.html" rel="nofollow">http://www.ambysoft.com/books/refactoringDatabases.html</a></p>
http://stackoverflow.com/questions/48817/where-to-find-resources-on-refactoring/48836#488364Answer by Espenhh for Where to find resources on Refactoring? Espenhh2008-09-07T22:09:03Z2008-09-07T22:22:34Z<p><a href="http://www.refactoring.com/" rel="nofollow">http://www.refactoring.com/</a> might help you. They have a long list of methods here:</p>
<ul>
<li><a href="http://www.refactoring.com/catalog/index.html" rel="nofollow">http://www.refactoring.com/catalog/index.html</a></li>
</ul>
<p>Joel's article <a href="http://www.joelonsoftware.com/articles/fog0000000348.html" rel="nofollow">Rub a dub dub</a> shows you why you should refactor and not rewrite (but I guess you already knew that rewriting is <a href="http://www.joelonsoftware.com/articles/fog0000000069.html" rel="nofollow">a thing you should never do</a>..)</p>
http://stackoverflow.com/questions/48817/where-to-find-resources-on-refactoring/49533#495331Answer by Nathan Long for Where to find resources on Refactoring? Nathan Long2008-09-08T11:54:00Z2008-09-08T11:54:00Z<p>Here are some <a href="http://c2.com/cgi/wiki?WikiPagesAboutRefactoring" rel="nofollow">Wiki pages about refactoring</a> that explore various principles and guidelines.</p>
http://stackoverflow.com/questions/48817/where-to-find-resources-on-refactoring/49580#495800Answer by Prakash for Where to find resources on Refactoring? Prakash2008-09-08T12:32:52Z2008-09-08T12:32:52Z<p>What is your codebase?</p>
<p>Eclipse has quite good support for Java. But unfortunately limited support for C++ code.</p>
<p><a href="http://www.ibm.com/developerworks/library/l-eclipse.html" rel="nofollow">Heres</a> an article from the makers..</p>
http://stackoverflow.com/questions/48817/where-to-find-resources-on-refactoring/56176#561760Answer by Colin Jack for Where to find resources on Refactoring? Colin Jack2008-09-11T09:59:20Z2008-09-11T09:59:20Z<p>Refactoring HTML is new and relatively good, you can guess what it covers :)</p>
<p>Other than that the two books you mention are the two I've used most, but <a href="http://rads.stackoverflow.com/amzn/click/0131857258" rel="nofollow">Agile Principles</a> is also very good.</p>
http://stackoverflow.com/questions/48817/where-to-find-resources-on-refactoring/59320#593200Answer by the empirical programmer for Where to find resources on Refactoring? the empirical programmer2008-09-12T15:33:41Z2008-09-12T15:33:41Z<p>There is a 'cheat sheet' for code smells here: <a href="http://industriallogic.com/papers/" rel="nofollow">http://industriallogic.com/papers/</a></p>
http://stackoverflow.com/questions/48817/where-to-find-resources-on-refactoring/817330#8173300Answer by zeroin23 for Where to find resources on Refactoring? zeroin232009-05-03T15:37:45Z2009-05-03T15:37:45Z<p>I would recommend reading <em>Working Effectively with Legacy Code</em>, then <em>Refactoring - Improving the design of existing code</em>. Martin Fowler's book is more like a receipt book for me, it explains how. Working effectively with legacy code, explains the why in my opinion. </p>
<p>below is some other books relating to refactoring:</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0471197130" rel="nofollow">antipatterns refactoring software architectures and projects in crisis</a></p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0470858923" rel="nofollow">refactoring in large software projects performing complex restructurings</a></p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0596514972" rel="nofollow">refactoring sql applications</a> </p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0596008740" rel="nofollow">Prefactoring</a></p>
http://stackoverflow.com/questions/48817/where-to-find-resources-on-refactoring/817390#8173900Answer by dr. evil for Where to find resources on Refactoring? dr. evil2009-05-03T16:07:10Z2009-05-03T16:07:10Z<p>Sourcemaking - <a href="http://sourcemaking.com/refactoring" rel="nofollow">http://sourcemaking.com/refactoring</a></p>