Link to home
Start Free TrialLog in
Avatar of Katze
Katze

asked on

Class tree

Where can I find all the classes with there functions etc... all the documentation (Like Java) on C++ classes?
Avatar of quando
quando

Please be more specific.  What classes do you want documentation on?
Avatar of Katze

ASKER

Ok, I don't want a tutorial and I don't have a specific class!! I want all of them!  On Java Sun web site, we can find ALL the classes of Java and their methods etc... Can I find that with C++?
ASKER CERTIFIED SOLUTION
Avatar of jasonclarke
jasonclarke

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
My example in the previous comment should of course have been 'Threading'
Unfortunately, I have never seen a complete standard library reference outside of the standard.  However, there are some good references for some parts.

For the legacy C functions and libraries, you can't beat the good old man pages.  (Unless of course, you have the misfortuce of programming on Windows, in which case it's off to msdn.micorsotf.com)

For the STL part of the standard library reference, I've come to rely on the SGI website, it is complete and well laid out.  http://www.sgi.com/tech/stl/

Otherwise, I go to Stroustrup's "The C++ Programming Language".  Nothing like getting it from the creator of the language.