|
-
March 17th, 2007, 01:49 AM
#1
STD guts!
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.
-
March 17th, 2007, 03:48 AM
#2
Re: STD guts!
ZDF
What is good is twice as good if it's simple.
"Make it simple" is a complex task.
-
March 17th, 2007, 06:52 AM
#3
Re: STD guts!
 Originally Posted by Mybowlcut
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!
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/
Cheers,
Hob
B+!
'There is no cat' - A. Einstein
Use [code] [/code] tags!
Did YOU share your photo with us at CG Members photo gallery ?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|