What are the best code refactoring strategies ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T22:54:21Zhttp://stackoverflow.com/feeds/question/128498http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies2What are the best code refactoring strategies ?Pierre-Jean Coudert2008-09-24T17:26:29Z2009-11-27T21:12:15Z
<p>Thanks for sharing your point of view and previous experiences here.</p>
<p>Here are some of the point you can write on:</p>
<ul>
<li>What must be the main refactoring goals ?</li>
<li>How do you scheduled your refactoring tasks ?</li>
<li>Do you recommend any specific tool ?</li>
<li>Do you plan pre and post refactoring tests ?</li>
<li>Do you plan refactoring specific code-reviews ?</li>
<li>...</li>
</ul>
<p>Anyway, feel free to share any thought, tip or best practice you can think about refactoring issues !</p>
http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies/128508#1285083Answer by Matt Hinze for What are the best code refactoring strategies ?Matt Hinze2008-09-24T17:27:52Z2008-09-24T17:27:52Z<p><a href="http://www.refactoring.com/" rel="nofollow">http://www.refactoring.com/</a></p>
<p>And there is a book, interestingly enough he titled it <em>Refactoring</em>.</p>
http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies/128520#1285200Answer by MagicKat for What are the best code refactoring strategies ?MagicKat2008-09-24T17:29:57Z2008-09-24T17:29:57Z<ul>
<li>Improving the code base</li>
<li>Bugs > Clients > Refactoring</li>
<li>Lots of unit tests</li>
<li>Yes</li>
<li>Yes</li>
</ul>
http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies/128524#1285240Answer by Kevin Fairchild for What are the best code refactoring strategies ?Kevin Fairchild2008-09-24T17:30:31Z2008-09-24T17:30:31Z<blockquote>
<p>What must be the main refactoring
goals ?</p>
</blockquote>
<p>For me, it's maintainability.</p>
<blockquote>
<p>Do you plan refactoring specific
code-reviews ?</p>
</blockquote>
<p>I do that with standard code-review.</p>
http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies/128530#1285300Answer by stephenbayer for What are the best code refactoring strategies ?stephenbayer2008-09-24T17:30:46Z2008-09-24T17:30:46Z<p>One of the main goals of refactoring is simplifying the code and making it more readable. The goal in refactoring is not to mess with the functionality. </p>
<p><a href="http://www.refactoring.com/tools.html" rel="nofollow">Here are a list of a few tools to use</a></p>
http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies/128538#1285383Answer by davetron5000 for What are the best code refactoring strategies ?davetron50002008-09-24T17:31:25Z2008-09-24T17:31:25Z<ul>
<li>Have unit tests (otherwise it is nigh-impossible to effectively refactor)</li>
<li>If you don't have unit tests, you can <a href="http://www.naildrivin5.com/daveblog5000/?p=41" rel="nofollow">possibly record some</a>.</li>
<li>formally deprecating methods you intend to remove can help</li>
<li>Eclipse has lots of features that can help (renaming/repackaging, promoting locals, demoting fields, etc.)</li>
<li>I would encourage code reviews; isolate your refactoring changes to a handful of sequential commits and review the diffs.</li>
<li>I would also aim for low-hanging fruit, and think small; huge refactorings carry a lot of risk and should not be undertaken lightly.</li>
</ul>
http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies/128556#1285560Answer by Jason Z for What are the best code refactoring strategies ?Jason Z2008-09-24T17:33:54Z2008-09-24T17:33:54Z<ul>
<li>Reduce code complexity and make code more readable</li>
<li>Prioritize goals and work on small chunks at any given time</li>
<li>Whatever unit test suite that is currently used in your organization</li>
<li>Definitely yes</li>
<li>Definitely yes</li>
</ul>
http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies/128562#1285621Answer by AdamC for What are the best code refactoring strategies ?AdamC2008-09-24T17:35:06Z2008-09-24T17:35:06Z<p>In my experience, I have used refactoring at two level of project development. </p>
<p> First, any time I am working with existing code, I try to find areas to not only add the new required functionality, but to add it in such a way that enhances the current design. To give a more specific example, instead of copying code, or just adding some new methods, see where common functionality can be factored out into a separate class or method and then used by both the new and legacy code. Of course, any existing tests should still work and could possibly have to be modified.</p>
<p>The other opportunity for refactoring is at each "break" in development which typically happens at milestones. The processes with which I have been involved try to plan some time for reflection at these point before plowing through the next development cycle. This is when you get to look back and see how the code can be improved to handle the upcoming goals.</p>
http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies/128568#1285680Answer by toolkit for What are the best code refactoring strategies ?toolkit2008-09-24T17:36:34Z2008-09-24T17:36:34Z<p>Here's my take on these questions :-)</p>
<h3>What must be the main refactoring goals ?</h3>
<p>To remove <a href="http://wiki.java.net/bin/view/People/SmellsToRefactorings" rel="nofollow">code smells</a> </p>
<h3>How do you scheduled your refactoring tasks ?</h3>
<p><a href="http://www.extremeprogramming.org/rules/refactor.html" rel="nofollow">Refactor mercilessly</a></p>
<h3>Do you recommend any specific tool ?</h3>
<p>Most IDEs will have refactoring facilities to assist with refactoring. But IMHO the essential tool for <strong><em>enabling</em></strong> refactoring is a unit-testing framework like <a href="http://www.junit.org/" rel="nofollow">junit</a></p>
<h3>Do you plan pre and post refactoring tests ?</h3>
<p>Practice <a href="http://en.wikipedia.org/wiki/Test-driven_development" rel="nofollow">Test Driven Development</a></p>
<h3>Do you plan refactoring specific code-reviews ?</h3>
<p>Not if you practice <a href="http://en.wikipedia.org/wiki/Pair_programming" rel="nofollow">Pair Programming</a></p>
http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies/1602067#16020670Answer by Kristopher Johnson for What are the best code refactoring strategies ?Kristopher Johnson2009-10-21T16:43:25Z2009-10-21T16:43:25Z<p>I'd say there are two good times for refactoring:</p>
<ol>
<li>While writing the code. (It isn't "finished" until you've refactored it.)</li>
<li>Before making changes, when refactoring will make those changes easier.</li>
</ol>
<p>Refactoring just for the sake of refactoring is often a waste of time; you probably have something more valuable to do with that time.</p>
http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies/1810646#18106460Answer by Kyralessa for What are the best code refactoring strategies ?Kyralessa2009-11-27T21:12:15Z2009-11-27T21:12:15Z<p><strong>Excel.</strong></p>
<p>I'd guess that 90% of my refactoring consists of replacing duplicated code with method calls. Unfortunately, there's no tool that I know of to do this automatically (though there are plenty of tools to extract methods and such). And it's hard for the human eye to spot tiny differences in code that's <em>mostly</em> the same.</p>
<p>So I use an Excel template which can compare from two to six sets of code. I use one worksheet for each number of duplicates. In the one for three sets of code, for instance, columns A through C are blank. Column D contains this:</p>
<pre><code>=IF(AND(A1=B1,B1=C1),"=","***")
=IF(AND(A2=B2,B2=C2),"=","***")
=IF(AND(A3=B3,B3=C3),"=","***")
</code></pre>
<p>etc. for a thousand lines or so down.</p>
<p>When I have code that <em>appears</em> to be duplicated, I copy each set of code and paste it in parallel columns in my spreadsheet. The lines that really are the same show up as <code>=</code>. The lines that are different show up as <code>***</code>.</p>
<p>This keeps me from introducing bugs by replacing code that isn't really duplicated. I can then go back and focus on the lines that have differences, often by replacing literals with parameters. (For instance, if one set of code has <code>int myNumber = 5;</code> and another set has <code>int myNumber = 6;</code>, I pull the 5 and 6 out into a parameter so the line ends up as <code>int myNumber = myParam;</code> in both cases.)</p>
<p>After a bit of work, I paste the code sets again and compare. Through this iteration, eventually I end up with <code>=</code> all the way down, at which point the code is genuinely duplicated, and I can replace all instances of it with an extracted method.</p>