So where can I find the best online C++ Standard Library reference? [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question 开发者_开发问答You know, with comments and examples and stuff.
Need a quick reference for when coding.
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.
Update:
These days, I mostly use cppreference.com.
Along with a copy of the standard, I use cplusplus.com, mostly because it is the first result when I google std::vector
.
Update:
These days, I mostly use cppreference.com.
Do yourself a favour, and buy a book, such as The C++ Standard Library.
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.
Personally, I rely on mainly on cplusplus.com and cppreference
精彩评论