You know, with comments and examples and stuff.

Need a quick reference for when coding.

link|improve this question

43% accept rate
6  
+1 for not calling it "the STL" – Lightness Races in Orbit May 31 '11 at 17:11
Yeah I noticed the bickering in other questions. – navand May 31 '11 at 17:24
@navand: Excellent! :D – Lightness Races in Orbit May 31 '11 at 17:25
I won't say the one on MSDN is the best, but I like it. – Benjamin Lindley May 31 '11 at 17:28
@Benjamin: So why don't you make that an answer? It seems as valid as mine. – Fred Larson May 31 '11 at 17:30
show 2 more comments
feedback

4 Answers

Do yourself a favour, and buy a book, such as The C++ Standard Library.

link|improve this answer
feedback

I don't know if I'd say it's "the best", but the online reference I use most often is the Apache C++ Standard Library Reference Guide. Maybe people use SGI's Standard Template Library Programmer's Guide.

link|improve this answer
Thanks, this is the kind of thing I was talking about. – navand May 31 '11 at 17:22
feedback

Along with a copy of the standard, I use cplusplus.com, mostly because it is the first result when I google std::vector.

link|improve this answer
feedback

The actual C++ Standard. Seriously. It's kind of expensive, but it's the only authoritative source out there. If you need specific docs on something Ctrl + F works just fine.

link|improve this answer
The draft of the new C++0x standard is available freely and makes an excellent general reference, though of course if in doubt you'll have to refer to the eventual published standard. Also: "Is it true that nobody owns the C++ standard?" -- "Probably, given the price." – Kerrek SB Jun 23 '11 at 11:52
@Kerrek: That is not the latest draft. The FCD was available for a while but was removed at the request of the International Standards Organization. – Billy ONeal Jun 23 '11 at 16:35
OK, thanks. Is the one I linked to sufficient though as a day-to-day reference? – Kerrek SB Jun 23 '11 at 22:26
@Kerrek: Depends. Are you a compiler developer? :) – Billy ONeal Jun 23 '11 at 22:34
1  
Haha, no! Exactly - if I just want to write "normal" C++ code without exploiting the dark alleys of unexpected language behaviour, would that downloadable reference be sufficiently accurate and complete? It has a great STL reference, that alone would be worth a recommendation if there aren't any glaring differences to the actual standard. – Kerrek SB Jun 23 '11 at 22:48
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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