vote up 2 vote down star
4

I thought I bookmarked a post on C++ best practices but I cannot seem to find it.

The title was something like, "10 things you should not do in C++", or something along those lines.

One recommendation was to not declare variables at the top of a function, but only when they are first needed.

Another was not adding parameters to constructors, but instead using inline initialization.

Can anyone point me to that post? Thanks.

flag

75% accept rate
It makes sense to declare variables when they can be initialized meaningfully (and close to first use improves locality), but I don't know why you'd want to have only constructors without parameters. That doesn't even make sense sometime. – David Thornley Jun 15 at 19:47

4 Answers

vote up 1 vote down

IMHO, variables declaration is not only c++ specific recommendation, so probably you should familiarize with Code Complete by Steve McConnell. It contains a lot of language independent coding guidelines.

link|flag
Thanks for the suggestion on the book, but I am looking for a specific list. – blu Jun 16 at 19:48
vote up 3 vote down

Check out "Coding Standards" by Sutter and Alexandrescu in addition to the Effective C++ recommendations.

link|flag
vote up 2 vote down

Could this link be the one you are referring to?

BTW, Bjarne Stroustrup (the creator of C++) also co-wrote a fantastic standards document with some folks at Lockheed Martin for the Joint Strike Fighter project. Regardless of what one thinks of military hardware, this document has a wealth of great "best practices" suggestions.

It can be found as a pdf at Bjarne's website.

link|flag
No it is not, but it does have some interesting tips. – blu Jun 15 at 21:31
vote up 7 vote down

If you look for more in depth details about C++ best practices, I recommand the book "Effective C++" by Scott Meyers.

link|flag
Thanks for the suggestion. There was one specific post with 10 specific recommendations listed, it was a great reference. Hopefully someone recalls the post. But thanks for the book, I will check it out. – blu Jun 15 at 19:39

Your Answer

Get an OpenID
or

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