vote up 4 vote down star
8

For those of us that have programmed enough I’m sure we have come across many different flavours of coding standards that you can use when it comes to programming.

e.g. http://msdn.microsoft.com/en-us/library/ms229042.aspx

You might derive your coding standards for the current company you work for or from the original author of the code you’re working on. Coding styles are often used for specific program languages and some styles in one coding language might not be considered appropriate for others. Of course some coding standards can be applied across many different program languages.

My question is do you have any good advice/links yourselves to a set of coding standards that you would recommend to others, or best practices to follow?

Thank you for your time.

flag
This is, of course, subjective, so should be CW. – Software Monkey Feb 20 at 9:15
Why do poeple insist on making every subjective question a wiki? – Treb Feb 20 at 10:05
@Treb Fear that others might get too much reputation, lol – amazedsaint Feb 20 at 10:31
You're probably right. – Treb Feb 20 at 10:43
Not to mention that it's been asked before, see the 'related questions' column to the right. I can count three. – George Stocker Feb 20 at 13:44
show 2 more comments

18 Answers

vote up 8 vote down check

Google has a posted style guide for C++ here which I consult sometimes. Just reading through the explanations and reasoning, despite whether you end up agreeing with some of the styles or not, may teach you some things you might not have thought about.

link|flag
And I just hope it doesn't spread: groups.google.ch/group/comp.lang.c++.moderated/… – unknown (google) Feb 20 at 9:51
Google's style guide is great, but they advise against exceptions, for interoperability reasons. People should note that this is specific to Google and they need to reevaluate this point based on their situation. – Nikhil Mar 7 at 1:21
of course, you don't have to take every part of the standard as if it was writ in stone. Use what makes sense to your team. – gbjbaanb Apr 15 at 18:26
vote up 2 vote down

Adam Cogan has a great set of rules on his web site. There are coding guidelines, but there is much more there also.

Adam Cogan's Rules to Better...

link|flag
vote up 2 vote down

Having asked this question. I found that the accepted answer proved to be sufficient for my needs.

However, I realise that this is not a 'one-size-fits-all' scenario, so there is a large quantity of information within the thread that you may find more or less useful. Weel worth a read!

link|flag
vote up 3 vote down

Some comment to the post suggesting looking at the Google C++ guidelines. Detailed discussion about some aspects of these guidelines are posted at comp.lang.c++.moderated.

Some weird or controversial points include:

We don't believe that the available alternatives to exceptions, such as error codes and assertions, introduce a significant burden.

As if assertions were a viable alternative... Assertions are usually for programming errors and situations that should never happen, while exceptions can happen (are somewhat anticipated) in the execution flow.

Reference Arguments: All parameters passed by reference must be labeled const. ... In fact it is a very strong convention that input arguments are values or const references while output arguments are pointers.

No comment, about weasel phrase a very strong convention.

Doing Work in Constructors: Do only trivial initialization in a constructor. If at all possible, use an Init() method for non-trivial initialization.  ... If your object requires non-trivial initialization, consider having an explicit Init() method and/or adding a member flag that indicates whether the object was successfully initialized.

Yes... 2-phase init to make things simpler... What if I have const fields? This rule is probably the effect of attitude towards exceptions.

Use streams only for logging

Which streams? IOStreams, standard C streams, other?

On one hand they advise to use macros only in exceptional situations, while they recommend using DISALLOW_COPY_AND_ASSIGN to prohibit copy/assign. They could have advised the approach with special class (like in Boost)

Do not overload operators except in rare, special circumstances.

What about assignment, or arithmetic operators for numeric calculations, etc?

Default parameters are more difficult to maintain because copy-and- paste from previous code may not reveal all the parameters. Copy-and- pasting of code segments can cause major problems when the default arguments are not appropriate for the new code.

The what? Copy/paste from previous code?

Remember that reading any of the guidelines can introduce a bias to your way of thinking. And sometimes it won't be beneficial for you or your code. I agree with some other posts advising reading good books by good authors beforehand. When you have sufficient amount of knowledge, then you are able to look at the guidelines and find good and weak points easily, without creating a mess in your brain ;)

link|flag
vote up 1 vote down

The answers here a pretty complete, thus I am not pointing to another coding standard document. However, once you decided to stick to one style you should use an automated coding style enforcer throughout your team.

For Java there is checkstyle and for .NET Microsoft Style Cop.

Here is a similar discussion on Stackoverflow: C# Coding standard / Best practices

link|flag
vote up 1 vote down

It doesn't quite answer the question, but it's worth a mention...

I read Steve McConnell's Code Complete. Whilst it doesn't give you a pre-baked set of coding standards it does set out a lot of good arguments for the various approaches. It'll make you think about things you'd not thought of before.

It changed my little world for the better.

link|flag
vote up 1 vote down

What's in the standard doesn't really matter all that much. What matters is that you have one, and that your developers follow it.

link|flag
vote up 1 vote down

Mono Coding Guidelines

link|flag
vote up 2 vote down

If you plan to introduce a code-formatting standard to an existing programming team, get input from each member of the team so they'll have "buy in" and be more likely to write code to that standard.

Programming styles are as difficult to change as habits, and you'll have to accept that some people won't make their code 100% compliant 100% of the time. It would be worth your time to find (or write your own) pretty-printer program and periodically run all your code through it to enforce consistency. (I always felt uneasy when manually checking in source code changes that only consisted of formatting corrections for other peoples' code; I worried that others would label me a nitpicker.)

link|flag
vote up 2 vote down

For Java and other C-family languages I recommend Sofware Monkey's coding standards (of course, since they're mine).

In general, Keep them simple, and provide examples and justification for every requirement.

link|flag
vote up 5 vote down

Coding standards are good, but coding standards written from scratch in which the company reinvents the wheel, or coding standards imposed by a single "prophet", can be worse than having no coding standards at all.

This means:

  • Coding standards should be discussed and agreed upon.
  • The coding standards document should include the reasons behind each rule.
  • Coding standards should be at least partially based on reliable sources.

The sources I know of for the languages in your tags are:

  • For C++: The book C++ Coding Standards by Sutter/Alexandrescu.
  • For C#: 4 or 5 PDF's I found googling for C# Coding Standards :)
link|flag
vote up 6 vote down

My best advice regarding coding standards: don't let them get in the way when trying to get work done.

A big bureaucracy might actually hinder progress in projects instead of helping to achieve better team work. When people complain about not following coding standards instead of the actual quality of the code, then it is too much regulation.

Other than that, pick one from the many suggestions and try to stick with it for as long as possible to build a code base following a single standard that you are used to.

link|flag
vote up 1 vote down

Very popular are Ellemtel rules for C++.

link|flag
I like it, one of the firsts recommendations document. – Ismael Feb 20 at 11:28
yeah right - try printing it out, then get a colleague to test you on rules at random. I guarantee you'll never score 100%, and if you cannot do that, then your code will never conform to the standard, and if your code never conforms.. then what's the point of having a standard in the first place! – gbjbaanb Apr 15 at 18:25
vote up 4 vote down

Coding standards are great. We've been using Lance Hunt's C# Coding Standards for .NET almost without modifications

link|flag
vote up 1 vote down

i think Code Craft - The Practice of Writing Excellent Code pretty much sums it all up

link|flag
vote up 2 vote down

If you are maintaining code that continue to use the same standard as the original code was developed in (there is nothing worse then trying to debug a problem when the code looks all higgildy piggeldy)

link|flag
I always think this should be the first (and sometimes only ;) ) rule for a coding standard. It definitely should override all other rules. – gbjbaanb Apr 15 at 18:29

Your Answer

Get an OpenID
or

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