Where to find resources on Refactoring? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T10:18:57Z http://stackoverflow.com/feeds/question/48817 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/48817/where-to-find-resources-on-refactoring 5 Where to find resources on Refactoring? Kasper 2008-09-07T21:40:27Z 2009-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#48819 3 Answer by Ben Scheirman for Where to find resources on Refactoring? Ben Scheirman 2008-09-07T21:44:46Z 2008-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#48828 1 Answer by Andrei for Where to find resources on Refactoring? Andrei 2008-09-07T21:57:39Z 2008-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#48836 4 Answer by Espenhh for Where to find resources on Refactoring? Espenhh 2008-09-07T22:09:03Z 2008-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#49533 1 Answer by Nathan Long for Where to find resources on Refactoring? Nathan Long 2008-09-08T11:54:00Z 2008-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#49580 0 Answer by Prakash for Where to find resources on Refactoring? Prakash 2008-09-08T12:32:52Z 2008-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#56176 0 Answer by Colin Jack for Where to find resources on Refactoring? Colin Jack 2008-09-11T09:59:20Z 2008-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#59320 0 Answer by the empirical programmer for Where to find resources on Refactoring? the empirical programmer 2008-09-12T15:33:41Z 2008-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#817330 0 Answer by zeroin23 for Where to find resources on Refactoring? zeroin23 2009-05-03T15:37:45Z 2009-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#817390 0 Answer by dr. evil for Where to find resources on Refactoring? dr. evil 2009-05-03T16:07:10Z 2009-05-03T16:07:10Z <p>Sourcemaking - <a href="http://sourcemaking.com/refactoring" rel="nofollow">http://sourcemaking.com/refactoring</a></p>