CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: STD guts!

  1. #1
    Join Date
    Nov 2006
    Location
    Australia
    Posts
    1,569

    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.
    Good judgment is gained from experience. Experience is gained from bad judgment.
    Cosy Little Game | SDL | GM script | VLD | Syntax Hlt | Can you help me with my homework assignment?

  2. #2
    Join Date
    Jun 2002
    Posts
    224

    Re: STD guts!

    ZDF

    What is good is twice as good if it's simple.
    "Make it simple" is a complex task.

  3. #3
    Join Date
    Dec 2004
    Location
    Poland
    Posts
    1,165

    Re: STD guts!

    Quote 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
  •  





Click Here to Expand Forum to Full Width

Featured