How often should you refactor? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T11:15:59Z http://stackoverflow.com/feeds/question/140677 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/140677/how-often-should-you-refactor 20 How often should you refactor? Bob King 2008-09-26T16:59:24Z 2008-09-29T20:12:07Z <p>I had a discussion a few weeks back with some co-workers on refactoring, and I seem to be in a minority that believes "Refactor early, refactor often" is a good approach that keeps code from getting messy and unmaintainable. A number of other people thought that it just belongs in the maintenance phases of a project.</p> <p>If you have an opinion, please defend it.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140683#140683 33 Answer by jop for How often should you refactor? jop 2008-09-26T17:00:42Z 2008-09-26T17:07:33Z <p>Just like you said: refactor early, refactor often.</p> <p>Refactoring early means the necessary changes are still fresh on my mind. Refactoring often means the changes tend to be smaller.</p> <p>Delaying refactoring only ends up making a big mess which further makes it harder to refactor. Cleaning up as soon as I notice the mess prevents it from building up and becoming a problem later.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140685#140685 15 Answer by Bob King for How often should you refactor? Bob King 2008-09-26T17:01:08Z 2008-09-26T17:01:08Z <p>I refactor every chance I get because it lets me hone my code into the best it can be. I do this even when actively developing to prevent creating unmaintainable code in the first place. It also oftentimes lets me straighten out a poor design decision before it becomes unfixable.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140687#140687 2 Answer by VVS for How often should you refactor? VVS 2008-09-26T17:01:24Z 2008-09-26T17:01:24Z <p>Everytime you encounter a need. At least when you're going to change a piece of code that needs refactoring.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140688#140688 2 Answer by Brian R. Bondy for How often should you refactor? Brian R. Bondy 2008-09-26T17:01:47Z 2008-09-26T17:01:47Z <p>The answer is always, but more specifically:</p> <ul> <li>Assuming you branch for each task, then on each new branch, before it goes to QA.</li> <li>If you develop all in the trunk, then before each commit.</li> <li>When maintaining old code, use the above for new tasks, and for old code do refactoring on major releases that will obtain extra QA.</li> </ul> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140689#140689 13 Answer by Bill the Lizard for How often should you refactor? Bill the Lizard 2008-09-26T17:01:55Z 2008-09-26T17:15:36Z <p>I refactor code as soon as it's functional (all the tests pass). This way I clean it up while it's still fresh in my mind, and before anyone else sees how ugly the first version was.</p> <p>After the initial check-in I typically refactor every time I touch a piece of code. Refactoring isn't something you should set aside separate time for. It should be something you just do as you go.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140691#140691 1 Answer by Marcin for How often should you refactor? Marcin 2008-09-26T17:02:27Z 2008-09-26T17:02:27Z <p>Absolutely as soon as it seems expedient. If you don't the pain builds up. </p> <p>Since switching to Squeak (which I now seem to mention every post) I've realised that lots of design questions during prototyping fall away because refactoring is really easy in that environment. To be honest, if you don't have an environment where refactoring is basically painless, I recommend that you try squeak just to know what it can be like.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140693#140693 2 Answer by Gishu for How often should you refactor? Gishu 2008-09-26T17:03:09Z 2008-09-26T17:03:09Z <p>As the book says, You refactor when</p> <ul> <li>you add some code... a new feature</li> <li>when you fix a bug / defect</li> <li>when you do a code-review with multiple people</li> <li>when you find yourself duplicating something for the third time.. 3 strikes rule</li> </ul> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140694#140694 4 Answer by Micah for How often should you refactor? Micah 2008-09-26T17:03:18Z 2008-09-26T17:03:18Z <p>A lot of times when I'm flushing out ideas my code starts out very tightly coupled and messy. As I start polishing the idea more the logical separations start becomming more and more clear and I begin refactoring. It's a constant process and as everyone suggests should be done 'Early and Often'.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140695#140695 0 Answer by ComSubVie for How often should you refactor? ComSubVie 2008-09-26T17:03:51Z 2008-09-26T17:03:51Z <p>I think you should refactor something when you're currently working on a part of it. Means if you have to enhance function A, then you should refactor it before (and afterwards?). If you don't do anything with this function, then leave it as it is, as long as you have something else to do.</p> <p>Do not refactor a working part of the system, unless you already have to change it.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140698#140698 0 Answer by BlackWasp for How often should you refactor? BlackWasp 2008-09-26T17:04:55Z 2008-09-26T17:04:55Z <p>There are many views on this topic, some linked to a particular methodology or approach to development. When using TDD, refactor early and often is, as you say, a favoured approach.</p> <p>In other situations you may refactor as and when needed. For example, when you spot repetitious code.</p> <p>When following more traditional methods with detailed up-front design, the refactoring may be less often. However, I would recommend not leaving refactoring until the end of a project. Not only will you be likely to introduce problems, potentially post-UAT, it is often also the case that refactoring gets progressively more difficult. For this reason, time constraints on the classic project cause refactoring and extra testing to be dropped and when maintenance kicks in you may have already created a spaghetti-code monster.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140709#140709 0 Answer by gbjbaanb for How often should you refactor? gbjbaanb 2008-09-26T17:08:08Z 2008-09-26T17:08:08Z <p>If it ain't broke, don't refactor it.</p> <p>I'd say the time to refactor belongs in the initial coding stage, and ou can do it as often and as many times as you like. Once its in the hands of a customer, then it becomes a different matter. You do not want to make work for yourself 'tidying' up code only to find that it gets shipped and breaks something.</p> <p>The time after initial delivery to refactor is when you say you'll do it. When the code gets a bit too smelly, then have a dedicated release that contains refactorings and probably a few more important fixes. That way, if you do happen to break something, you know where it went wrong, you can much more easily fix it. If you refactor all the time, you will break things, you will not know that its broken until it gets QAd, and then you'll have a hard time trying to figure out whether the bugfix/feature code changes caused the problem, or some refactoring you performed ages ago.</p> <p>Checking for cbreaking changes is a lot easier when the code looks roughly like it used to. Refactor a lot of code structure and you can make it next to impossible, so only refactor when you seriously mean to. Treat it like you would any other product code change and you should be ok.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140714#140714 2 Answer by Leanan for How often should you refactor? Leanan 2008-09-26T17:09:11Z 2008-09-26T17:09:11Z <p>I refactor when:</p> <p>I'm modifying code and I'm confused by it. If it takes me a while to sift it out, it needs refactoring.</p> <p>I'm creating new code and after I've got it "working". Often times I'll get things working and as I'm coding I realize "Hey, I need to redo what I did 20 lines up, only with a few changes". At that point I refactor and continue.</p> <p>The only thing that in my opinion should stop you from doing this is time constraints. Like it or not, sometimes you just don't have the time to do it.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140723#140723 6 Answer by Steve Jessop for How often should you refactor? Steve Jessop 2008-09-26T17:12:11Z 2008-09-26T17:18:05Z <p>Three good reasons to refactor:</p> <ul> <li>Your original design (perhaps in a very small area, but design nonetheless) was wrong. This includes where you discover a common operation and want to share code.</li> <li>You are designing iteratively.</li> <li>The code is so bad that it needs major refurbishment.</li> </ul> <p>Three good reasons not to refactor:</p> <ul> <li>"This looks a little bit messy".</li> <li>"I don't entirely agree with the way the last guy did this".</li> <li>"It might be more efficient". (The problem there is 'might').</li> </ul> <p>"Messy" is controversial - there is a valid argument variously called "fixing broken windows", or "code hygiene", which suggests that if you let small things slide, then you will start to let large things slide too. That's fine, and is a good thing to bear in mind, but remember that it's an analogy. It doesn't excuse shunting stuff around interminably, in search of the cleanest possible solution.</p> <p>How often you refactor should depend on how often the good reasons occur, and how confident you are that your test process protects you from introducing bugs.</p> <p>Refactoring is never a goal in itself. But if something doesn't work, it has to be fixed, and that's as true in initial development as it is in maintenance. For non-trivial changes it's almost always better to refactor, and incorporate the new concepts cleanly, than to patch a single place with great lumps of junk in order to avoid any change elsewhere.</p> <p>For what it's worth, I think nothing of changing an interface provided that I have a handle on what uses it, and that the scope of the resulting change is manageable.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140732#140732 7 Answer by Garth Gilmour for How often should you refactor? Garth Gilmour 2008-09-26T17:13:15Z 2008-09-26T17:13:15Z <p>You write code with two hats on. The <em>just-get-the-thing-working</em> hat and the <em>I-need-to-understand-this-tomorrow</em> hat. Obviously the second hat is the refactoring one. So you refactor every time you have made something work but have (inevitably) introduced smells like duplicated code, long methods, fragile error handling, bad variable names etc...</p> <p>Refactoring whilst trying to get something working (i.e. wearing both hats) isn't practical for non-trivial tasks. But postponing refactoring till the next day/week/iteration is very bad because the context of the problem will be gone from your head. So switch between hats as often as possible but never combine them.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140766#140766 2 Answer by chris for How often should you refactor? chris 2008-09-26T17:21:49Z 2008-09-26T17:48:44Z <p>It's like the National Parks -- Always leave it a little better than you found it.</p> <p>To me, that means any time I open code, and have to scratch my head to figure out what's going on, I should refactor something. My primary goal is for readability and understanding. Usually it's just renaming a variable for clarity. Sometimes it's extracting a method -</p> <p>For example (trivial), If I came across</p> <pre><code>temp = array[i]; array[i] = array[j]; array[j] = temp; </code></pre> <p>I would probably replace that with a swap(i,j) method.</p> <p>The compiler will likely inline it anyways, and a swap() tells everyone semantically what's going on.</p> <p>That being said, with my own code (starting from scratch), I tend to refactor for design. I often find it easier to work in a concrete class. When its done and debugged, then I'll pull the old Extract Interface trick.</p> <p>I'll leave it to a co-worker to refactor for readability, as I'm too close to the code to notice the holes. After all, I know what I meant.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140844#140844 2 Answer by s_t_e_v_e for How often should you refactor? s_t_e_v_e 2008-09-26T17:36:04Z 2008-09-26T17:36:04Z <p>I localize refactoring to code related to my current task. I try to do my refactoring up front. I commit these changes separately since from a functional standpoint, it is unrelated to the actual task. This way the code is cleaner to work with and the revision history is also cleaner.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140920#140920 0 Answer by AlexForbes for How often should you refactor? AlexForbes 2008-09-26T17:48:09Z 2008-09-26T17:48:09Z <p>I think this Top 100 Wordpress blog post may have some good advice. <a href="http://blog.accurev.com/2008/09/17/dr-strangecode-or-how-i-learned-to-stop-worrying-and-love-old-code/" rel="nofollow">http://blog.accurev.com/2008/09/17/dr-strangecode-or-how-i-learned-to-stop-worrying-and-love-old-code/</a></p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140934#140934 2 Answer by Chris Noe for How often should you refactor? Chris Noe 2008-09-26T17:50:45Z 2008-09-29T01:41:35Z <p>"Refactor early, refactor often" is a productive guideline. Though that kind of assumes that you really know the code. The older a system gets, the more dangerous refactoring becomes, and the more deliberation is required. In some cases refactoring needs to be managed tasks, with effort level and time estimates, etc.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/140947#140947 2 Answer by catfood for How often should you refactor? catfood 2008-09-26T17:53:03Z 2008-09-26T17:53:03Z <p>Refactor opportunistically! Do it whenever it's <em>easy</em>.</p> <p>If refactoring is difficult, then you're doing it at the wrong time (when the code doesn't need it) or on the wrong part of the code (where there are better efficiencies to be gained elswhere). (Or you're not that good at refactoring yet.)</p> <p>Saving refactoring for "maintenance" is a tautology. Refactoring <em>is</em> maintenance.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/141702#141702 3 Answer by Wedge for How often should you refactor? Wedge 2008-09-26T20:18:20Z 2008-09-26T20:18:20Z <p>I try to go by this motto: leave all the code you touch better than it was.</p> <p>When I make a fix or add a feature I usually use that opportunity to do limited refactoring on the impacted code. Often this makes it easier to make my intended change, so it actually doesn't cost anything.</p> <p>Otherwise, you should budget dedicated time for refactoring, if you can't because you are always fighting fires (I wonder why) then you should force yourself to refactor when you find making changes becomes much harder than it should and when "code smells" are just unbearable.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/141915#141915 2 Answer by James Bender for How often should you refactor? James Bender 2008-09-26T20:54:05Z 2008-09-26T20:54:05Z <p>Continuously, within reason. You should always be looking for ways to improve your software, but you have to be careful to avoid situations where you’re refactoring for the sake of refactoring (Refactorbation). </p> <p>If you can make a case that a refactoring will make a piece of code faster, easier to read, easier to maintain or easier or provide some other value to the business I say go for it!</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/142200#142200 1 Answer by Zee JollyRoger for How often should you refactor? Zee JollyRoger 2008-09-26T21:51:15Z 2008-09-26T21:51:15Z <p>Refactoring often can often save the day, or at least some time. There was a project I was working on and we refactored all of our code after we hit some milestone. It was a great way because if we needed to rip code out that was no longer useful it made it easier to patch in whatever new thing we needed.</p> http://stackoverflow.com/questions/140677/how-often-should-you-refactor/150433#150433 1 Answer by Motlin for How often should you refactor? Motlin 2008-09-29T20:12:07Z 2008-09-29T20:12:07Z <p>I refactor every time I <strong>read</strong> anything and can make it <strong>more readable</strong>. Not a major restructuring. But if I think to myself "what does this <code>List</code> contain? Oh, <code>Integer</code>s!" then I'll change it to <code>List&lt;Integer&gt;</code>. Also, I often extract methods in the IDE to put a good name of a few lines of code.</p>