Coding Rules of Thumb - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-17T11:29:52Z http://stackoverflow.com/feeds/question/855133 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/855133/coding-rules-of-thumb 4 Coding Rules of Thumb [closed] rjstelling 2009-05-12T22:11:48Z 2009-05-13T08:58:57Z <p>What are your general <strong>Coding Rules of Thumb</strong>. Things that you can apply generally to a new or existing project to increase the quality of the code.</p> <p>For example, how many lines of code is <em>too</em> many for a single function?</p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855151#855151 2 Answer by JesperE for Coding Rules of Thumb JesperE 2009-05-12T22:17:18Z 2009-05-13T00:43:15Z <p>Off the top of my head:</p> <ul> <li>Functions which don't fit on one screen are candidates for refactoring</li> <li>If you have more comments than you have code, that's too many comments</li> <li>Any piece of knowledge should exist at one and only one place (the DRY principle)</li> </ul> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855164#855164 16 Answer by Serapth for Coding Rules of Thumb Serapth 2009-05-12T22:21:01Z 2009-05-12T22:21:01Z <p>Your cited example is exactly why rules of thumb don't work. In some situations, it makes sense to break a function down to pieces, especially if those individual pieces can possibly be re-used or are especially prone for failure. That said, it is perfectly possible that you have 100-200 lines of code that really are specific to one particular function and shouldn't be refactored into other functions.</p> <p>Another common "rule of thumb" is related to comments, which says for every X lines of code you should have Y lines of comments. This is the kind of rule of thumb that is actually soul drainingly bad for two reasons. First, it causes newer programmers to comment code that really doesn't need commenting, as the code itself was self explanitory. The worse effect is the other party, who subscribe to "a rule of thumb" and end of wasting their time commenting code which didn't need commenting, then get poisoned off the idea of commenting code, which they should have been doing all along.</p> <p>This is why rules of thumb are basically dangerous. They may apply to 90% of situations, but, in those other 10% of situations they are incredibly effective. Or, on the flipside, it leads to a ton of lost productivity, working on arbitrary rules instead of actual deliverables.</p> <p>Don't get me wrong, there are good programming practices and bad programming practices, but they are learned, and when you learn such practices, you will identify the gray areas in which generalized rules don't apply.</p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855166#855166 4 Answer by Buddy for Coding Rules of Thumb Buddy 2009-05-12T22:22:14Z 2009-05-12T22:22:14Z <p>Do not repeat yourself. That is the best rule of thumb I can think of.</p> <p>Functions should have as few lines to get the job done while still being readable. Sometimes, there are functions that just need to have many lines of code. Having a hard and fast rule like, "No function should have more then X lines of code," can lead to people doing things like this:</p> <pre><code>function foo1() { ... foo2(); } function foo2() { .... foo3(); } function foo3() { ... } </code></pre> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855183#855183 1 Answer by John Weldon for Coding Rules of Thumb John Weldon 2009-05-12T22:25:42Z 2009-05-12T23:07:00Z <p><a href="http://en.wikipedia.org/wiki/Don%27t%5Frepeat%5Fyourself" rel="nofollow">DRY</a></p> <p><a href="http://knol.google.com/k/christopher-boss/solid-programming-part-1" rel="nofollow">SOLID</a> (<a href="http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod" rel="nofollow">Better link</a>)</p> <p>Common Sense! (no link provided)</p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855185#855185 2 Answer by Martin Clarke for Coding Rules of Thumb Martin Clarke 2009-05-12T22:26:09Z 2009-05-12T22:26:09Z <p>My rule: Don't apply rules blindly, the context is everything.</p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855187#855187 -2 Answer by Glenn for Coding Rules of Thumb Glenn 2009-05-12T22:26:42Z 2009-05-12T22:26:42Z <p>Not exactly coding catechisms but since you tagged your question with software engineering, may I recommend some <a href="http://www.dynamicalsoftware.com/cgi-bin/ViewBlogEntry.pl?id=15" rel="nofollow">advice</a> from the editor of the Journal of Systems and Software?</p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855188#855188 10 Answer by Chris Brandsma for Coding Rules of Thumb Chris Brandsma 2009-05-12T22:26:57Z 2009-05-12T22:26:57Z <ul> <li>DRY - Dont Repeat Yourself </li> <li>If support: TDD. Write test before, during, after, whenever. But please write some tests. </li> <li>More than one screen of code is too long for a method.</li> <li>Don't fear really small methods that better explain what your code is doing.</li> <li>If Object Oriented, Look up <a href="http://www.lostechies.com/blogs/chad%5Fmyers/archive/2008/03/07/pablo-s-topic-of-the-month-march-solid-principles.aspx" rel="nofollow">SOLID Principles</a>.</li> <li>Write your code as if the person inheriting it is a psychopath with your home address.</li> </ul> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855192#855192 1 Answer by Vinko Vrsalovic for Coding Rules of Thumb Vinko Vrsalovic 2009-05-12T22:28:07Z 2009-05-12T22:28:07Z <p>Rules of thumb are only useful when presented in context and with some discussion. <a href="http://www.fraber.de/university/software%5Farchitecture/21ideas.html" rel="nofollow">McCarthy's 21 Rules of Thumb for Shipping Great Software on Time</a> do exactly that, even though they are at a bit of a higher level than the pure coding level. You may or may not agree, or find situations where they don't apply to your particular situation, but they are worth to think about.</p> <p>There's no summary here because that would do them a disservice.</p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855205#855205 4 Answer by Marc Vitalis for Coding Rules of Thumb Marc Vitalis 2009-05-12T22:31:49Z 2009-05-12T22:31:49Z <p>I always ask this question to myself most of the time, and end up over architecturing my work. :( Then I learned. :)</p> <ol> <li>Make your code work first. While you are doing it, do some basic unit tests along with it. It's not necessary that you make 100% code coverage with your test.</li> <li>Then refactor it as necessary, don't overdo it. The test you created are there to back you up so that you won't blow up anything in your application.</li> <li>Add tests as necessary. (you may try to make your test 100% code covered, but then, you will learn how to make efficient tests).</li> <li>Review what you've done, and learn from it. :)</li> </ol> <p>Rule of thumbs are there to guide you on what to do. But it is not necessary for you to do it all the time.</p> <p>Here's a good reading BTW.</p> <p><a href="http://www.foundationsof.com/FoundationsOfProgramming.pdf" rel="nofollow">http://www.foundationsof.com/FoundationsOfProgramming.pdf</a></p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855251#855251 2 Answer by Tom Hawtin - tackline for Coding Rules of Thumb Tom Hawtin - tackline 2009-05-12T22:46:28Z 2009-05-12T22:46:28Z <p>The question seems to be interested in metrics, which IMO are evil. Code is not quantitative. The only exception that springs to mind is the exact, no line longer than 80 characters (I don't care if you have a big screen, I have a windowing system). Other than that, there's a few obvious quantities:</p> <ul> <li>Number of classes that are neither purely abstract (probably interface in Java) or leaf. Reliance on inheritance is bad.</li> <li>Number of protected members. For similar reasons to the first point.</li> <li>Number of implementations of abstract classes should be strictly more than one.</li> <li>Number off getters and setters should be low.</li> <li>Number of private methods should be low.</li> <li>Test coverage should be high (but not too high).</li> <li>I guess there is a reasonable thumb metric to show how well layered code is.</li> <li>Equally a metric for pointless biscuit-cutter layering (notably old EJB-style).</li> <li>Never apply moderate correction to a bad programmer, even one that use singletons, with a stick wider than your thumb. You may need to surgically enhance your thumb.</li> <li>If the programmer has a stackoverflow rep over 10k, then they clearly have too much time on their hands.</li> </ul> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855260#855260 1 Answer by James for Coding Rules of Thumb James 2009-05-12T22:49:29Z 2009-05-12T22:49:29Z <p>Write your code in the knowledge it'll be read many more times than it's written, and try not to outsmart yourself.</p> <p>And I agree - context is everything!</p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855294#855294 0 Answer by Foredecker for Coding Rules of Thumb Foredecker 2009-05-12T22:59:53Z 2009-05-12T22:59:53Z <p>The application of experienced judgment trumps all rules of thumb.</p> <p>(this is another way of saying "context is everything" :)</p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855312#855312 2 Answer by ChrisAD for Coding Rules of Thumb ChrisAD 2009-05-12T23:03:44Z 2009-05-12T23:03:44Z <p>If your really into questions like this I would like to recommend (and push you too buy) the book:</p> <p><a href="http://cc2e.com/" rel="nofollow">Code Complete Second Edition</a></p> <p>I would like to recommend keeping methods/functions/classe within their scope of work area. Meaning that if you for example have a method called "cleanKitchen" you keep that method to clean the kitchen, but dont allow it do other tasks which you could make a different method to handle, like "prepearKitchenForDinner". </p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855313#855313 3 Answer by smok1 for Coding Rules of Thumb smok1 2009-05-12T23:04:02Z 2009-05-12T23:04:02Z <ol> <li>Code defensively!</li> <li>When dealing with hardcore business knowledge (e.g. banking, law, civil engineering, aviation) – put as much as you can info configuration!</li> <li>Contrary to 2: do not put EVERYTHING into configuration, only the things that should be made by people who have business knowledge</li> <li>Use error handling for user input errors, exception for exceptions and assertions for impossible things. Misspelling SSN is NOT an exception – it is user error. Nonexistent data file is NOT a small error – it is an exception. Pointer nulling amazingly behind your back is not an exception – it is “a miracle” and should be handled by assertion.</li> <li>Refactor and rework as often as you can, especially when project end is far away – you will have to change the code logic, and it is much more easy to change good code.</li> <li>Leave hard problems, and think them for some time before implementing. Sometimes couple of days walking with your code in your mind can give you a clue, how to write better code, than your first idea.</li> <li>When working in a team – hide details. Provide your pals with step-by-step tutorial how to use your feature. Add complete and decent description as an attachment to your easy tutorial.</li> </ol> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855406#855406 1 Answer by David Plumpton for Coding Rules of Thumb David Plumpton 2009-05-12T23:27:14Z 2009-05-12T23:27:14Z <p>Be suspicious of everything that "smells".</p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855771#855771 1 Answer by Matt P. for Coding Rules of Thumb Matt P. 2009-05-13T02:21:56Z 2009-05-13T02:21:56Z <p>Fail fast: If something has gone wrong, throw a descriptive exception right there! Don't let errors propagate through the program until they cause some other exception somewhere else.</p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855863#855863 1 Answer by akf for Coding Rules of Thumb akf 2009-05-13T03:00:50Z 2009-05-13T03:00:50Z <p>for clarity, avoid multiple negatives:</p> <pre><code>if (!dontDisagree) { disagree(); } </code></pre> http://stackoverflow.com/questions/855133/coding-rules-of-thumb/856870#856870 0 Answer by Hao Wooi Lim for Coding Rules of Thumb Hao Wooi Lim 2009-05-13T08:58:57Z 2009-05-13T08:58:57Z <p>Relevant links:</p> <p><a href="http://stackoverflow.com/questions/611304/how-many-lines-of-code-should-a-function-procedure-method-have">How many lines of code should a function/procedure/method have</a></p> <p><a href="http://stackoverflow.com/questions/475675/when-is-a-function-too-long">When is a function too long</a></p> <p><a href="http://stackoverflow.com/questions/129599/best-rule-for-maximum-function-size/129647#129647">Best rule for maximum function size</a></p>