Writing maintainable code - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T12:48:45Z http://stackoverflow.com/feeds/question/162805 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/162805/writing-maintainable-code 18 Writing maintainable code Jeremy 2008-10-02T14:59:44Z 2009-03-15T15:33:49Z <p>What is the single most important factor for writing maintainable code (language independent)?</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162813#162813 1 Answer by JeeBee for Writing maintainable code JeeBee 2008-10-02T15:00:40Z 2008-10-02T15:00:40Z <p>Good comments.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162816#162816 -1 Answer by Martin for Writing maintainable code Martin 2008-10-02T15:01:08Z 2008-10-02T15:01:08Z <p>Documentation.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162818#162818 9 Answer by MattW. for Writing maintainable code MattW. 2008-10-02T15:01:17Z 2008-10-02T15:01:17Z <p>Good abstraction</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162821#162821 20 Answer by Carlton Jenke for Writing maintainable code Carlton Jenke 2008-10-02T15:01:42Z 2008-10-02T20:36:38Z <p>Separation of Concerns (each method does one thing) - this stops Spaghetti code. </p> <p>EDIT: (In response to Ash's comment) The key to maintainability is being able to quickly figure out what the code is doing and how to make changes in order to accomplish a task.</p> <p>Having the code separated out so that each task is handled by a method dedicated to it makes this a snap.</p> <p>For instance, if I want to change the way an elbow is bent on software for a robot, having a method named BendElbow makes it a no-brainer where the change needs to be made.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162822#162822 4 Answer by MattW. for Writing maintainable code MattW. 2008-10-02T15:01:43Z 2008-10-02T15:01:43Z <p>Good method names</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162824#162824 1 Answer by Alan for Writing maintainable code Alan 2008-10-02T15:01:51Z 2008-10-02T15:01:51Z <p>Continuous refactoring</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162827#162827 21 Answer by jop for Writing maintainable code jop 2008-10-02T15:02:13Z 2008-10-02T15:08:45Z <p>Automated unit tests. </p> <p>You can slowly change the design of the code via refactoring if you've covered it with automated tests that tells you when it you are breaking existing functionality. Automated tests makes changing code less risky.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162829#162829 5 Answer by Dave for Writing maintainable code Dave 2008-10-02T15:02:45Z 2008-10-02T15:02:45Z <p>Good upfront design. Nothing can save a poor design.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162834#162834 0 Answer by Lucas Oman for Writing maintainable code Lucas Oman 2008-10-02T15:03:08Z 2008-10-02T15:03:08Z <p>Good comments can make even the worst spaghetti code 10x easier to maintain.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162853#162853 4 Answer by cciotti for Writing maintainable code cciotti 2008-10-02T15:06:05Z 2008-10-02T15:06:05Z <p>Don't do <a href="http://mindprod.com/jgloss/unmain.html" rel="nofollow">any of this stuff!</a> Thanks to Roedy Green for the laughs though.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162863#162863 5 Answer by Rontologist for Writing maintainable code Rontologist 2008-10-02T15:07:24Z 2008-10-02T15:07:24Z <p>Unit testing hands down. If you unit test your code from the get go then you will have a test suite that you can run to validate the validity of your code whenever you make a change.</p> <p>Also, when you are writing code with unit test then the methods tend to be smaller since they are easier to test. As well, it should encourage you to make your methods to a single task - again since it is easier to test that way.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162866#162866 34 Answer by Jim C for Writing maintainable code Jim C 2008-10-02T15:08:06Z 2008-10-02T15:08:06Z <p>Write it for other people to read. This means a combination of good names, good comments, and simple statements. </p> <p>Once upon a time memory was scarce and cycles times were slow. programmers were encouraged to write complex single lines of code that did many things. Today memory is plentiful and cycle times are fast. You should write 5 lines of simple code people can follow instead of one line they cannot understand. </p> <p>Good comments don't have to be long, but they must be helpful. </p> <p>Also be consistent. Do not change styles in your code. For example don't change naming styles from one section to the next. </p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162868#162868 0 Answer by xero for Writing maintainable code xero 2008-10-02T15:08:18Z 2008-10-02T15:08:18Z <p>Good comments. Good comments help with abstraction by stating the code's intended purpose, bad comments just restate what the code is doing. Comments could actually come in the form of well-designed and named unit tests.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162876#162876 1 Answer by Dan for Writing maintainable code Dan 2008-10-02T15:09:16Z 2008-10-02T15:09:16Z <p>Consistency.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162877#162877 3 Answer by unknown (yahoo) for Writing maintainable code unknown (yahoo) 2008-10-02T15:09:30Z 2008-10-02T15:09:30Z <p>I don't think there is a single factor you can focus on. If there is I think it would have to be good judgement. Even well documented, easy to read code can be difficult to maintain if a developer used poor judgement during the design phase. No matter how good the documentation and unit test are, bad design of a production application can be almost impossible to fix.</p> <p>You could also take a look at something like The Guide to Unmaintainable Code for ideas of what not to do. Informative and funny!</p> <p><a href="http://mindprod.com/jgloss/unmain.html" rel="nofollow">http://mindprod.com/jgloss/unmain.html</a></p> <p>I have actually worked at companies that "standardized" on some of the things mentioned in there. You would think most of that stuff is just common sense, but you might be surprised.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162939#162939 4 Answer by Ash for Writing maintainable code Ash 2008-10-02T15:19:09Z 2008-10-02T15:19:09Z <p>Being on 1st or 2nd level support for the software you just wrote, for a year or two after release.</p> <p>Trust me, I've been there myself. The "fear" that I may have to maintain or enhance my own code in a years time is always a great motivator for improving maintainability.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/162947#162947 2 Answer by PeterAllenWebb for Writing maintainable code PeterAllenWebb 2008-10-02T15:20:04Z 2008-10-02T15:20:04Z <p>As I see it, the fundamental rule in writing maintainable code is that your code should be very easy to understand. This isn't as easy as it sounds, and you'll have to use all of the other techniques mentioned here to do it. It requires a certain amount of empathy because you'll have to learn how other developers see your code, and how it differs from the way you see it. A good way to get a grasp of that is to go back and look at some code you wrote a couple years ago.</p> <p>Now, I suppose that it would be possible, theoretically, to write code that is very easy to understand and performs exactly the task it is intended for but which is also hard to modify in any way. I've never seen code like that, though.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/163018#163018 0 Answer by Jeff for Writing maintainable code Jeff 2008-10-02T15:28:54Z 2008-10-02T15:28:54Z <p>Having good documentation. This includes code that is self-documenting (compartmentalized, descriptively named, and clear), good comments, a detailed design document that is accurate to the (most recently) final version of the code, and descriptive change notes in your source control.</p> <p>If you asked for two, the second would definitely be unit tests. It was a hard choice between the two.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/163039#163039 1 Answer by Sirish Kumar for Writing maintainable code Sirish Kumar 2008-10-02T15:34:24Z 2008-10-02T15:34:24Z <p>For me writing testable code(checkout Google testing blog) is the better maintainable code</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/163124#163124 2 Answer by PhiLho for Writing maintainable code PhiLho 2008-10-02T15:48:23Z 2008-10-02T15:48:23Z <p>There is no "single most important factor", it is a combination of several factors, as pointed out above.</p> <p>Now, most of these rules can be condensed into: "write your code to read it later".<br /> Or to paraphrase a funny yet good advice: "Write your code as if it must be maintained by an homicidal maniac knowing where you live."...</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/163174#163174 0 Answer by JayG for Writing maintainable code JayG 2008-10-02T15:59:58Z 2008-10-02T15:59:58Z <p>A consistent coding style. Things like method and variable naming conventions, styles and formats for comments, and even module/file naming.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/163198#163198 1 Answer by Remo.D for Writing maintainable code Remo.D 2008-10-02T16:05:22Z 2008-10-02T16:05:22Z <p>I already voted up Matt's answer "Good Abstraction" but I wanted to add something.</p> <p>Documenting it's all about <em>explaining</em> things. I'm all in favor of Doxygen and other automatic documentation tools but crude lists of functions in an API are just better than nothing.</p> <p>If you want to have your code to be maintanable, describe your solution to the proper level of abstraction and refine that level up to the code so that it's obvious what it does.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/163243#163243 0 Answer by Saif Khan for Writing maintainable code Saif Khan 2008-10-02T16:12:25Z 2008-10-02T16:12:25Z <p>I'd go with some of the others, ABSTRACTION. It also helps when you understand a few software patterns, GOF is a good place to start for that kind of stuff.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/163280#163280 2 Answer by Dan Hewett for Writing maintainable code Dan Hewett 2008-10-02T16:18:16Z 2008-10-02T16:18:16Z <p>Plenty of whitespace. - High density code is hard to comprehend. If you have more than 6 lines wihtout a blank line, then that group is probably not a cohesive thought/idea/operation.</p> <p>Good variable names - explanatory, but succinct. Huge variable names are as bad as tiny ones.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/163289#163289 4 Answer by glenatron for Writing maintainable code glenatron 2008-10-02T16:20:53Z 2008-10-02T16:20:53Z <p>Read Code Complete- it covers everything about this from variable naming right through to the really big stuff and it is <em>all</em> necessary. There is no one thing.</p> <p>My approach currently boils down to writing code to do the job that needs to be done ( not for every future job the code may need potentially to do ) using informative variable names and minimal variable scope and trying to make sure that my code needs as little supplementary documentation as possible. Sometimes this makes my variable and method names a little more verbose than they used to be ( my debugging output is very compreshensive when I use that ) but they are much easier to understand.</p> <p>Maintainability is also generally an outcome of solid practice in other respects - if you are writing your code in a nice DRY way then problems are easier to find, if you've got a strong set of tests then you can see if maintenance changes are going to break anything. </p> <p>Ultimately it's a question of trying to be thoughtful and writing for the future- code is only written once, after that it's all maintenance...</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/163338#163338 1 Answer by Jen A for Writing maintainable code Jen A 2008-10-02T16:33:24Z 2008-10-02T16:33:24Z <p>small, well defined functions and classes. </p> <p>It's pretty easy to get used to other people's various coding conventions but if everything is in one giant class or function, my head explodes.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/163520#163520 2 Answer by Rismo for Writing maintainable code Rismo 2008-10-02T17:21:01Z 2008-10-02T17:21:01Z <p>I would say the most important factor is DRY. glenatron Mention it already on his answer among other factors, but I think that's the most important one.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/164480#164480 1 Answer by phreakre for Writing maintainable code phreakre 2008-10-02T20:40:32Z 2008-10-02T20:40:32Z <p>Without a doubt, writing code designed to be read by other people. This includes avoiding golf, mystery syntax, and thoughtful variable names that mean something. You can completely avoid writing any comments if the code is clean enough, IMO. \</p> <p>[Picking a language with OO built in as opposed to tacked on helps too]</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/164657#164657 0 Answer by rshimoda for Writing maintainable code rshimoda 2008-10-02T21:17:58Z 2008-10-02T21:17:58Z <p>I guess writing maintainable code goes beyond code. I believe it is better to understand what the requirements were (and have it documented somehow, both functional and non-functional) and then have, like, a new employee, introduced to how that turned into code.</p> <p>If someone knows why code turned out to be like that, then it gets easier to make it better and / or to expand it.</p> <p>For more technical things (such as an algorithm) have it abstractly explained (goal, principle) and then commenting key parts of the code and / or pattern implementations.</p> <p>One thing I do also is to create mini-labs, toolboxes and code templates inside my application so that people know what is the "standard" code necessary to do one thing or to expand another (leads to some copy/pasting but helps to produce more and better).</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/164856#164856 1 Answer by Seas for Writing maintainable code Seas 2008-10-02T22:16:05Z 2008-10-02T22:16:05Z <p>There is a tendency to write code thinking that the computer is your audience. </p> <p>Strictly speaking, that's true since the code does have to work. But if you write with your human audience in mind, just that mindset helps to produce more readable code.</p> <p>If you're worried that that will produce slow code, keep in mind that the most programs almost all of their time in very small portions of code. Start out writing for readability, then use a profiler to identify the right sections to optimise.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/164876#164876 0 Answer by Quibblesome for Writing maintainable code Quibblesome 2008-10-02T22:19:59Z 2008-10-02T22:19:59Z <p>I prefer it when people prune and shape the code as it grows. Too often you find an original spine of decent architecture with a huge cludgy mess hanging off it. </p> http://stackoverflow.com/questions/162805/writing-maintainable-code/165679#165679 0 Answer by White Vans Inc for Writing maintainable code White Vans Inc 2008-10-03T04:20:55Z 2008-10-03T04:20:55Z <p>Finding a good mentor. This person doesn't necessarily have to be a better coder than you, however they should be able to suggest other strategies for writing code properly. A good mentor will be to suggest many of the answers previously given to this topic. They can be a second set of eyes that let you know where your short comings are, while maintaining an encouraging, optimistic tone. They will also be flexible and constantly honing their skills as should you. That way when the next big paradigm comes up you'll be better able to separate the chaff from the wheat. This will be invaluable when Object Oriented Programming and Source Control are replaced by the next big thing (hard to imagine I know.)</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/165704#165704 0 Answer by Kent Brewster for Writing maintainable code Kent Brewster 2008-10-03T04:37:13Z 2008-10-03T04:37:13Z <p>Programming is performance; you should never forget who your audience is. "Code as if the person who ends up maintaining your code is a violent psychopath who knows where you live."</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/192619#192619 0 Answer by Marcin for Writing maintainable code Marcin 2008-10-10T18:47:20Z 2008-10-10T18:47:20Z <p>Strong, sensible conventions which are consistently applied. Things like conventions on where to start indexing, what end state to leave things in. </p> <p>This makes it <em>much</em> easier to understand code, as all your code will behave in a way that is simpler.</p> <p>This is at least one of my top tips.</p> http://stackoverflow.com/questions/162805/writing-maintainable-code/645919#645919 1 Answer by Paul Morrison for Writing maintainable code Paul Morrison 2009-03-14T13:37:11Z 2009-03-15T15:33:49Z <ul> <li><p>Record assumptions when you make them - two days later you will be taking these assumptions for granted, but the next person who maintains your code won't necessarily make the same assumptions, and will wonder why you did what you did...</p></li> <li><p>Code for <em>people</em> - the computer will do anything you tell it; code so <em>humans</em> can understand your code - who knows it might be you 6 months from now!</p></li> </ul>