What is in the STD namespace? I know cout, cin, endl, string, etc.. but are there others? If someone can give me a msdn2 link or something that would be helpful... I looked but couldn't find anything that answered my question!
Thankyouuuu.
Printable View
What is in the STD namespace? I know cout, cin, endl, string, etc.. but are there others? If someone can give me a msdn2 link or something that would be helpful... I looked but couldn't find anything that answered my question!
Thankyouuuu.
Try this: http://www.josuttis.com/
std namespace contains each and every standard C++ class, object, function, typedef, anything. If anything is said to be a part of C++ standard, it is enclosed in namespace std. This includes all collection classes (vector, list, etc), strings, streams, algorithms, exceptions, and many more. All these are described in C++ standard paper, which is not free, but there are standard drafts available for free: http://www.open-std.org/jtc1/sc22/wg...wp/html/oct97/Quote:
Originally Posted by Mybowlcut
Cheers,
Hob