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?
|
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?
|
||||||||||||
|
closed as not a real question by Ben Blank, Ed Swangren, Brian, SilentGhost, Mark Ingram May 13 at 9:03 |
|
|
|
||
|
|
|
|
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. |
||||||||
|
|
|
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:
|
||
|
|
|
|
I always ask this question to myself most of the time, and end up over architecturing my work. :( Then I learned. :)
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. |
||
|
|
|
|
|
||
|
|
|
|
My rule: Don't apply rules blindly, the context is everything. |
||
|
|
|
|
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:
|
||
|
|
|
|
If your really into questions like this I would like to recommend (and push you too buy) the book: 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". |
||
|
|
|
|
Off the top of my head:
|
||||||||||||||
|
|
|
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. |
||
|
|
|
|
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! |
||
|
|
|
|
|
|||
|
|
|
Be suspicious of everything that "smells". |
||
|
|
|
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. |
||
|
|
|
|
for clarity, avoid multiple negatives:
|
||
|
|
|
|
The application of experienced judgment trumps all rules of thumb. (this is another way of saying "context is everything" :) |
||
|
|
|
|
Relevant links: How many lines of code should a function/procedure/method have |
||
|
|
|
|
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? |
||
|
|