Link to home
Start Free TrialLog in
Avatar of nwaltham
nwaltham

asked on

Good documentation on C++ Base Clases?

I would like a URL to some online documentation for the C++ classes that come with the C++ compiler and libraries avialble on Linux.  I am looking for documentation on things like cin and cout and any collection type  classes.

Thanks in advance,
Nicholas Walltham
Avatar of curri
curri

I don't know about any specific GNU C++ library documentation, but it tries to follow the standard, so any good recent C++ book would do. Also you can get copies of old standard drafts on the net (or an electronic copy of the standard for about 20 bucks).

A good online reference to the standard C++ library is:
http://www.dinkumware.com/refcpp.html

It talks about cin/cout, and also about STL, which has all the 'collection classes'.
Best URL I know about STL is by SGI
http://www.sgi.com/Technology/STL/
ASKER CERTIFIED SOLUTION
Avatar of paitre
paitre
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of nwaltham

ASKER

That really is an excellent source!