 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
da Vinci Guest
|
Posted: Thu Aug 28, 2003 2:28 pm Post subject: Help Needed: C/C++ Standard Libraries |
|
|
Hi.
I am starting to learn C++ and am curious to find out if there are any
Word documents or PDF files that list all of the standard libraries,
the functions contained within them, a short description of them, and
how to use them.
Basically, what is listed on www.cplusplus.com under the reference
area.
It would be a major help to have a hard copy reference list on hand
that lists all of this data.
Thanks in advance...
DV
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
Richard Smith Guest
|
Posted: Fri Aug 29, 2003 3:25 pm Post subject: Re: Help Needed: C/C++ Standard Libraries |
|
|
da Vinci wrote:
| Quote: | I am starting to learn C++ and am curious to find out if there are any
Word documents or PDF files that list all of the standard libraries,
the functions contained within them, a short description of them, and
how to use them.
|
For a definitive list, you need a copy of the C++ Standard
(USD 18 for a PDF from [url]www.ansi.org)[/url]. Functions inherited
from C (e.g. printf) are listed but not described in the C++
Standard, and you need a copy of the C Standard (the 1990
version + Ammendment 1) for their descriptions. As C90 is
no longer the current C standard -- it was superceeded in
1999 -- you cannot, as far as I know, get this any more.
Many standard libray vendors provide documentation listing
most of the functions. The SGI documentation on the STL
(the containers and iterators parts of the standard library)
is good for this
http://www.sgi.com/tech/stl/table_of_contents.html
Dinkumware also provide an extensive online reference
http://www.dinkumware.com/libraries_ref.html
| Quote: | It would be a major help to have a hard copy reference list on hand
that lists all of this data.
|
"The C++ Standard Library" by Nicolai Josuttis is a
good reference to the STL part of the standard library.
The best reference for the IOStreams part of the standard
library is certainly "Standard C++ IOStreams and Locales"
by Angelika Langer & Klaus Kreft. I'm not aware of a good
reference to bits of the library inherited from C.
--
Richard Smith
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
Ben Hutchings Guest
|
Posted: Sat Aug 30, 2003 10:12 am Post subject: Re: Help Needed: C/C++ Standard Libraries |
|
|
In article <lt0qkv49tclv4tg7t6bl0g1nujeqgnep9f (AT) 4ax (DOT) com>, da Vinci wrote:
| Quote: | Hi.
I am starting to learn C++ and am curious to find out if there are any
Word documents or PDF files that list all of the standard libraries,
the functions contained within them, a short description of them, and
how to use them.
Basically, what is listed on www.cplusplus.com under the reference
area.
It would be a major help to have a hard copy reference list on hand
that lists all of this data.
|
You can get the standard as a PDF for USD 18 from ANSI, but that doesn't
say much about how to use the library:
<http://webstore.ansi.org/ansidocstore/product.asp?sku=INCITS%2FISO%2FIEC+14882%2D1998>
(be aware that a corrected version of the standard will be available
in a month or so).
Dinkumware's Unabridged Library Reference is pretty good, judging from
what I've seen of it, and you can download the lot in HTML form for
USD 24: <http://www.dinkumware.com/libraries_ref.html>
Microsoft publishes Dinkumware's standard library documentation as part
of the MSDN Library, so if you have access to that in HTML Help format
you may be able to print out that section. That would probably waste a
lot of paper though, as every function would be printed on its own page
and would include the bogus example code added by Microsoft.
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
llewelly Guest
|
Posted: Sat Aug 30, 2003 1:44 pm Post subject: Re: Help Needed: C/C++ Standard Libraries |
|
|
Richard Smith <richard (AT) ex-parrot (DOT) com> writes:
| Quote: | I'm not aware of a good
reference to bits of the library inherited from C.
|
P.J. Plauger's _The Standard C Library_
The version I have is a bit out of date for C99, but great for C++ .
:-)
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
Ray Lischner Guest
|
Posted: Sun Aug 31, 2003 5:20 pm Post subject: Re: Help Needed: C/C++ Standard Libraries |
|
|
On Friday 29 August 2003 08:25 am, Richard Smith wrote:
| Quote: | "The C++ Standard Library" by Nicolai Josuttis is a
good reference to the STL part of the standard library.
The best reference for the IOStreams part of the standard
library is certainly "Standard C++ IOStreams and Locales"
by Angelika Langer & Klaus Kreft. I'm not aware of a good
reference to bits of the library inherited from C.
|
C++ in a Nutshell documents the entire standard library, including the
portions inherited from C.
--
Ray Lischner, author of C++ in a Nutshell
http://www.tempest-sw.com/cpp
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
Early Ehlinger Guest
|
Posted: Wed Sep 03, 2003 12:47 am Post subject: Re: Help Needed: C/C++ Standard Libraries |
|
|
Uh, you could always purchase the C++ Standard in PDF form for $18 from
ANSI.
http://webstore.ansi.org/ansidocstore/product.asp?sku=INCITS%2FISO%2FIEC+148
82%2D1998
--
-- Early Ehlinger CEO, ResPower Inc - Toll-Free : 866-737-7697
-- www.respower.com -- 500+ GHz Supercomputer Starting At USD$0.50/GHz*Hour
"da Vinci" <blank (AT) blank (DOT) com> wrote
| Quote: | Hi.
I am starting to learn C++ and am curious to find out if there are any
Word documents or PDF files that list all of the standard libraries,
the functions contained within them, a short description of them, and
how to use them.
Basically, what is listed on www.cplusplus.com under the reference
area.
It would be a major help to have a hard copy reference list on hand
that lists all of this data.
Thanks in advance...
DV
|
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|