vote up 4 vote down star
3

What are your general Coding Rules of Thumb. Things that you can apply generally to a new or existing project to increase the quality of the code.

For example, how many lines of code is too many for a single function?

flag

4  
This is far too general a question, I would say.. There's an entire question about "how many lines of code is too many for a single function" (probably numerous, actually!).. – dbr May 12 at 22:59
4  
My only rule of thumb; use your head instead of "rules of thumb". – Ed Swangren May 12 at 23:14
1  
At the very least, it should be a wiki for basically being a poll. – gnovice May 13 at 2:32

closed as not a real question by Ben Blank, Ed Swangren, Brian, SilentGhost, Mark Ingram May 13 at 9:03

18 Answers

vote up 10 vote down check
  • DRY - Dont Repeat Yourself
  • If support: TDD. Write test before, during, after, whenever. But please write some tests.
  • More than one screen of code is too long for a method.
  • Don't fear really small methods that better explain what your code is doing.
  • If Object Oriented, Look up SOLID Principles.
  • Write your code as if the person inheriting it is a psychopath with your home address.
link|flag
vote up 16 vote down

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.

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.

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.

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.

link|flag
2  
@Serapth your rule of thumb, no rules of thumb :) – rjstelling May 12 at 22:33
Pretty much. ;) Although I prefer to word it as no blinders! – Serapth May 12 at 22:36
Isn't that what a rule of thumb IS... something that applies to 90% of situations? – Daniel Straight May 12 at 23:32
vote up 4 vote down

Do not repeat yourself. That is the best rule of thumb I can think of.

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:

function foo1() {
  ...
  foo2();
}
function foo2() {
  ....
  foo3();
}
function foo3() {
...
}
link|flag
vote up 4 vote down

I always ask this question to myself most of the time, and end up over architecturing my work. :( Then I learned. :)

  1. 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.
  2. 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.
  3. Add tests as necessary. (you may try to make your test 100% code covered, but then, you will learn how to make efficient tests).
  4. Review what you've done, and learn from it. :)

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.

Here's a good reading BTW.

http://www.foundationsof.com/FoundationsOfProgramming.pdf

link|flag
vote up 3 vote down
  1. Code defensively!
  2. When dealing with hardcore business knowledge (e.g. banking, law, civil engineering, aviation) – put as much as you can info configuration!
  3. Contrary to 2: do not put EVERYTHING into configuration, only the things that should be made by people who have business knowledge
  4. 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.
  5. 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.
  6. 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.
  7. 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.
link|flag
vote up 2 vote down

My rule: Don't apply rules blindly, the context is everything.

link|flag
vote up 2 vote down

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:

  • Number of classes that are neither purely abstract (probably interface in Java) or leaf. Reliance on inheritance is bad.
  • Number of protected members. For similar reasons to the first point.
  • Number of implementations of abstract classes should be strictly more than one.
  • Number off getters and setters should be low.
  • Number of private methods should be low.
  • Test coverage should be high (but not too high).
  • I guess there is a reasonable thumb metric to show how well layered code is.
  • Equally a metric for pointless biscuit-cutter layering (notably old EJB-style).
  • 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.
  • If the programmer has a stackoverflow rep over 10k, then they clearly have too much time on their hands.
link|flag
vote up 2 vote down

If your really into questions like this I would like to recommend (and push you too buy) the book:

Code Complete Second Edition

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".

link|flag
vote up 2 vote down

Off the top of my head:

  • Functions which don't fit on one screen are candidates for refactoring
  • If you have more comments than you have code, that's too many comments
  • Any piece of knowledge should exist at one and only one place (the DRY principle)
link|flag
1  
I guess it depends on the size of your screen. – rjstelling May 12 at 22:18
1  
And your font size :) – Martin Clarke May 12 at 22:29
1  
And your vision! :) – Serapth May 12 at 22:51
Note that I did not write "all functions should fit on one screen". – JesperE May 13 at 6:49
vote up 1 vote down

Rules of thumb are only useful when presented in context and with some discussion. McCarthy's 21 Rules of Thumb for Shipping Great Software on Time 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.

There's no summary here because that would do them a disservice.

link|flag
vote up 1 vote down

Write your code in the knowledge it'll be read many more times than it's written, and try not to outsmart yourself.

And I agree - context is everything!

link|flag
vote up 1 vote down

DRY

SOLID (Better link)

Common Sense! (no link provided)

link|flag
Umm... was it something I said? – John Weldon May 12 at 23:06
vote up 1 vote down

Be suspicious of everything that "smells".

link|flag
like this answer! – Huntrods May 12 at 23:36
vote up 1 vote down

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.

link|flag
vote up 1 vote down

for clarity, avoid multiple negatives:

if (!dontDisagree) {
   disagree();
}
link|flag
vote up 0 vote down

The application of experienced judgment trumps all rules of thumb.

(this is another way of saying "context is everything" :)

link|flag
vote up -2 vote down

Not exactly coding catechisms but since you tagged your question with software engineering, may I recommend some advice from the editor of the Journal of Systems and Software?

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.