Very new to C++ ...questions
Hi all. Here are two questions to begin with:
1. What is the difference between the C++ standard library, and the C++ standard template library?
2. You know how Java has the API & documentation info. for all classes available? Where can I find similar documentation for the C++ standard library? ...for both functions & classes available. And how would I actually view the contents of these functions and classes, if I wanted to?
Thanks.
apcxpc
Junior Poster in Training
55 posts since Sep 2004
Reputation Points: 10
Solved Threads: 0
1) The C++ standard library consists of everything (such as the C standard library) and the STL is an obsolete term describing the container classes and iterator based template functions supported by the C++ standard library.
2) www.dinkumware.com
Narue
Bad Cop
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401