vote up 16 vote down star
3

Java has its own (self-documented) Javadoc, PHP has PHP.net, all the MS documenation can be found at the MS Developers Network, but whenever it comes to throwing together some C++ my first stop is always Google.

To all the C++ developers out there, what's your one-stop-shop?

flag

TBH, nowadays all my Windows development uses Google instead of MSDN. MSDN's a shadow of its former glory. – gbjbaanb Oct 22 '08 at 22:03

14 Answers

vote up 16 vote down check

I use CPlusPlus It's a great reference.

link|flag
That is also another great website I forgot to include. :) – Zee JollyRoger Oct 1 '08 at 0:55
can someone hyperlink this please? – Greg Rogers Oct 1 '08 at 1:39
Hold on I will. – Rayne Oct 1 '08 at 1:58
vote up 14 vote down

"Effective C++" By Scott Myers. Yes, it's a dead-tree book. Most of what you really need to know about C++ is in there.

link|flag
Actually, the rest of Meyers's books are quite good: "More Effective C++" (amazon.com/More-Effective-Addison-Wesley-Professi…) and "Effective STL" (amazon.com/Effective-STL-Addison-Wesley-Professio…). – Leonardo Oct 1 '08 at 2:05
vote up 13 vote down

C++ FAQ Lite. I've actually got the book too; I find myself constantly referring to it.

link|flag
vote up 11 vote down

One of the most complete references I've seen (and rightly so considering the source) is Stroustrup's "The C++ Programming Language"

It's not the type of book you'll want to use to teach a beginner course in C++ but for the professional software engineer/programmer, it's top notch for fitting the most answers in the fewest pages.

link|flag
Agreed. I've always heard of it being a good reference, but beginners better think twice. – Zee JollyRoger Oct 1 '08 at 1:53
Believe it or not, this was my introductory C++ book... yes, I did have a lot of time on my hands. – Sam Stokes Oct 1 '08 at 1:55
The first edition was my introduction to C++ as well, which wasn't too bad. I'd hate to think what that would be like today, though. – Ferruccio Oct 6 '08 at 15:48
vote up 9 vote down

How is The C++ Standard Library, Nicolai M. Josuttis, not yet on the list? Covers all the C++03 standard library.

Also, any discussion talking about comprehensive libraries for C++ should include the Boost libraries, which are well documented there as well.

As for free online reference, CppReference and CPlusPlus have been mentioned, but they pale compared to Josuttis' book.

link|flag
vote up 9 vote down

There's no one-stop shop for me. The ones I use all the time are:

UPDATE: I ran across another great C++ site

link|flag
vote up 4 vote down

Scott Meyers's triple are quite useful: Effective C++, More Effective C++, and
Effective STL.

And Google C++ Style Guide is also useful (and educative)

link|flag
vote up 3 vote down

The Dinkumware Compleat Reference is a good reference for the STL and other standard C++ headers.

link|flag
vote up 2 vote down

I use cppreference all the time for STL stuff. It's good for the C API too.

link|flag
vote up 2 vote down

What's wrong with Google? I get most of the other resources mentioned here from that one spot.

link|flag
vote up 1 vote down

I use Cprogramming.com, there are quite a few articles and tutorials there. Some of them may be outdated/slightly old. It gets the job done though.

link|flag
vote up 1 vote down

Its difficult to name one here, I would prefer to have following in my work table.

  • "The C++ Programming language" - Bjarne Stroustrup
  • "C++ Primer" - Stanley B. Lippman
  • "Effective C++" series by Scott mayers
  • "Exceptional C++" series by Herb Sutter
  • "BOOST Reference mannual"
link|flag
vote up 1 vote down

My original plan was to read most most of the books already mentioned here (in particular Scott Meyers, Stroustrup and Sutter), as well as a subscription to the C/C++ User's Journal. I have back copies and there's always something worth reading even in the older issues.

Dr Dobbs was/is also good, especially since it also covered non-C/C++ subjects. I think the best resources depend on what you're using. Always found Meyer's book on STL was a good read.

link|flag
vote up 0 vote down

a good one to learn on

Accelerated C++: Practical Programming by Example by Andrew Koenig

a good one to learn more on

Advanced C++ Programming Styles and Idioms by James O. Coplien

link|flag

Your Answer

Get an OpenID
or

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