Styg
Styg

Reputation: 303

Accessing documentation on c++

I'm a novice programmer who just migrated from Python (on IDLE) to C++ and I'm finding it uncomfortable to know only a few "essential" methods of STL data structures. Is there something like the Python help() function in C++, or some other way to access digestible and concise documentation as regards the Standard Library?

Edit: To be clear, I am looking for a way to access documentation from my computer, preferably from within the IDE/compiler (I currently use and prefer g++ on Cygwin in Windows 7. I also have Code::Blocks, however). Please don't recommend books or mark this question as a duplicate of The Definitive C++ Book Guide and List.

Upvotes: 0

Views: 365

Answers (3)

oblitum
oblitum

Reputation: 12018

http://cppreference.com

http://www.cplusplus.com

If you're on Mac OS, you can use the nice Dash which can integrate with editors or be used on its own. It supports the cppreference.com docs (instant offline indexed documentation).

If you're on Windows (Visual Studio) MSDN also provides STL docs.

As I'm on Linux I just use http://cppreference.com, but I'd like to have a good alternative (not Zeal) to Dash.

Upvotes: 0

Magnus
Magnus

Reputation: 1640

  • In general Cplusplus.com helps very much.
  • Maybe the GNU C++ Library will also help.
  • You could also read the official C++ book by Bjarne Stroustrup.

Upvotes: 0

Davidbrcz
Davidbrcz

Reputation: 2397

This is the documentation I like the most : http://en.cppreference.com/w/

With a keyword for fast searching in Firefox, it is very efficient

Upvotes: 8

Related Questions