Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: C++ Standard Documentation

  1. #1
    Join Date
    Nov 2005
    Location
    Michigan
    Beans
    538

    C++ Standard Documentation

    is there a web site that has the c++ standard documentation, kind of like the java api documentation?
    HOWTO: Set up wireless internet (Desktop or laptop)
    Registered Linux User #454618
    2112

  2. #2
    Join Date
    Sep 2006
    Location
    Barnet, North London
    Beans
    103
    Distro
    Kubuntu Development Release

    Re: C++ Standard Documentation

    Google C++ documentation returns lots of valid results.

    Heres one http://www.cppreference.com/

  3. #3
    Join Date
    Jan 2006
    Location
    California
    Beans
    Hidden!

    Re: C++ Standard Documentation

    here's a good one (also found in google)

    http://cplus.about.com/
    -Patrick
    let the strings lead you

  4. #4
    Join Date
    Dec 2005
    Beans
    Hidden!

    Re: C++ Standard Documentation

    Quote Originally Posted by HokeyFry View Post
    is there a web site that has the c++ standard documentation, kind of like the java api documentation?
    Yes, there is! It is located here: http://www.sgi.com/tech/stl/

    SGI has currently the best STL implementation. MS' one sux.

  5. #5
    Join Date
    Nov 2006
    Location
    Mumbai, India
    Beans
    186
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: C++ Standard Documentation

    Quote Originally Posted by Patrick-Ruff View Post
    here's a good one (also found in google)

    http://cplus.about.com/

    Somehow I never find my way around about.com.... I don't like commercial websites with loads of ads and unformatted code snippets for programming... </opinion>

    I'd really rather go for a more plainer website that gives documentation to the point... and as the OP likes the Java API docs, something like cppreference.com would be more suitable.

  6. #6
    Join Date
    Nov 2006
    Location
    New Jersey, USA
    Beans
    3
    Distro
    Xubuntu 6.10 Edgy

    Re: C++ Standard Documentation

    If you want a website, then cppreference.com is probably the best way to go. My opinion on a great STL reference (not a website) would be: The C++ Standard Library: A Tutorial and Reference by Nicolai M. Josuttis. I love this book and keep it nearby my desk since I'm forgetful of simple APIs

  7. #7
    Join Date
    Sep 2005
    Beans
    61

    Re: C++ Standard Documentation

    unfortunately the above links has nothing to do with the C++ standard

    if you want _the_ C++ language specification then you should look around on http://www.open-std.org/

    direct link to the latest working draft: http://www.open-std.org/jtc1/sc22/wg...2006/n2009.pdf
    (imho this is what you want)
    python -c 'import this'

  8. #8
    Join Date
    Aug 2006
    Location
    Belgium
    Beans
    Hidden!
    Distro
    Xubuntu 8.04 Hardy Heron

    Re: C++ Standard Documentation

    I'm rather fond of the libstdc++ API documentation: http://gcc.gnu.org/onlinedocs/libstd...mentation.html but it takes some time to get used to it.

  9. #9
    Join Date
    Apr 2006
    Beans
    267
    Distro
    Kubuntu 7.04 Feisty Fawn

    Re: C++ Standard Documentation

    Quote Originally Posted by Zdravko View Post
    Yes, there is! It is located here: http://www.sgi.com/tech/stl/

    SGI has currently the best STL implementation. MS' one sux.
    SGI has the best C++ API documentation. It's so easy to read through and find your way around. I like how it describes forms and also provides links to associated concepts. It's pretty thorough.

    The cppreference.com site is pretty nice too.
    Last edited by FyreBrand; December 28th, 2006 at 08:31 PM.

  10. #10
    Join Date
    Dec 2006
    Location
    Chicago, IL
    Beans
    39

    Re: C++ Standard Documentation

    Hello,

    I'm also looking for standard library documentation but for C language, not C++ since I haven't got that far... Two best links that I found are:

    http://www-ccs.ucsd.edu/c/index.html
    http://www.acm.uiuc.edu/webmonkeys/book/c_guide/

    According to the standards, there are 18 headers available in C library, the first link describes all 18 of them, second only 15. Other sites cover only 4, but in very good detail with straightforward examples. I would be very grateful if anybody could tell about any reference, book or anything that covers those all 18 in great detail

    I have "The C Programming Language, 2nd edition" but it doesn't cover them all, or maybe I just will google each individual header/class to learn more about it.

    Also another question, I have Visual Studio 2005, is Standard Template Library (STL) based on the STL published by SGI? I am so confused on those STLs. I want to learn C++ after I finish with C, I got past pointers and I'm finishing up

    Can anybody tell me why linux kernel, drivers and most of the apps are still programmed in C but not in C++? Does it have to do with objects creating garbage and memory leaks?
    Last edited by nfm; December 30th, 2006 at 08:02 AM. Reason: Spelling

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •