C++Talk.NET Forum Index C++Talk.NET
C++ language newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Help me finding a good C++ book.

 
Post new topic   Reply to topic    C++Talk.NET Forum Index -> C++ Language (Moderated)
View previous topic :: View next topic  
Author Message
Felipe Magno de Almeida
Guest





PostPosted: Tue Aug 24, 2004 10:48 pm    Post subject: Help me finding a good C++ book. Reply with quote



I would like to buy a book about C++, but something more advanced than
the most I see around and around US$ 70-130. With template stuff, and a
lot(a really lot) of STL, and kinds of stuff people who claims to knows
C++ knows very little.
Thanks in advance.
--
Felipe Magno de Almeida
Ciencia da Computacao - Unicamp
[email]felipe.almeida (AT) ic (DOT) unicamp.br[/email] - UIN: 2113442
Cause Rock and Roll can never die.
"if you want to learn something really well, teach it to a computer."
What is Communism?
Answer: "Communism is the doctrine of the conditions of the liberation
of the proletariat." (by Karl Marx)

[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
Back to top
Nicola Musatti
Guest





PostPosted: Wed Aug 25, 2004 8:45 pm    Post subject: Re: Help me finding a good C++ book. Reply with quote



Felipe Magno de Almeida <felipe.almeida (AT) ic (DOT) unicamp.br> wrote

Quote:
I would like to buy a book about C++, but something more advanced than
the most I see around and around US$ 70-130. With template stuff, and a
lot(a really lot) of STL, and kinds of stuff people who claims to knows
C++ knows very little.

If Bjarne Stroustrup's "The C++ Programming Language" 3rd ed. is not
enough, I'm afraid you'll have to decide on which aspects of the
language you'd like to concentrate. For the topics you mention I'd
recommend

On templates:
Vandevoorde, D., Josuttis, N., "C++ Templates: the complete guide",
Addison Wesley.

On the STL portion of the standard library:

Austern, M. "Generic Programming and the STL: Using and Extending the
C++ Standard Template Library", Addison Wesley.

I suspect you'll get several answers along the same lines: at least
you'll be able to judge the books from the number of votes each gets
:-)

Cheers,
Nicola Musatti

[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]


Back to top
Bronek Kozicki
Guest





PostPosted: Wed Aug 25, 2004 8:47 pm    Post subject: Re: Help me finding a good C++ book. Reply with quote



Felipe Magno de Almeida wrote:
Quote:
I would like to buy a book about C++, but something more advanced than
the most I see around and around US$ 70-130. With template stuff, and a
lot(a really lot) of STL, and kinds of stuff people who claims to knows

Best documentation of standard C++ library I have seen is Josuttis,
http://www.amazon.com/exec/obidos/ASIN/0201379260

Best book (and very advanced) about templates is Josuttis & Vandevoorde
http://www.amazon.com/exec/obidos/ASIN/0201734842 . Amazing things you
can do with templates are described by Alexandrescu
http://www.amazon.com/exec/obidos/ASIN/0201704315

For great books about programming practice look for Meyers, Sutter and
Dewhurst.

The one and the only true reference of C++ language is C++ standard
ISO/IEC 14882:2003 http://www.amazon.com/exec/obidos/ASIN/0470846747/
or PDF version
http://webstore.ansi.org/ansidocstore/product.asp?sku=INCITS%2FISO%2FIEC+14882%2D2003
however you DO NOT want to learn from it.


B.

[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]


Back to top
Ulrich Eckhardt
Guest





PostPosted: Wed Aug 25, 2004 8:51 pm    Post subject: Re: Help me finding a good C++ book. Reply with quote

Felipe Magno de Almeida wrote:
Quote:
I would like to buy a book about C++

go to http://accu.org and look at the book reviews.

Uli

--
FAQ: http://parashift.com/c++-faq-lite/
/* bittersweet C++ */
default: break;

[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]


Back to top
Jakob B. Olsen
Guest





PostPosted: Wed Aug 25, 2004 8:54 pm    Post subject: Re: Help me finding a good C++ book. Reply with quote

"Felipe Magno de Almeida" <felipe.almeida (AT) ic (DOT) unicamp.br> skrev i en
meddelelse news:cgg9f2$5g3$1 (AT) aracaju (DOT) ic.unicamp.br...
Quote:
I would like to buy a book about C++, but something more advanced than
the most I see around and around US$ 70-130. With template stuff, and a
lot(a really lot) of STL, and kinds of stuff people who claims to knows
C++ knows very little.
Thanks in advance.

Try The C++ Standard Library: A Tutorial and Reference by Nicolai M.
Josuttis

I find it a brilliant book.

/Jakob



[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]


Back to top
Stephan Born
Guest





PostPosted: Wed Aug 25, 2004 9:45 pm    Post subject: Re: Help me finding a good C++ book. Reply with quote

Felipe Magno de Almeida wrote:

Quote:
I would like to buy a book about C++, but something more advanced than
the most I see around and around US$ 70-130. With template stuff, and a
lot(a really lot) of STL, and kinds of stuff people who claims to knows
C++ knows very little.
Thanks in advance.

Take a look at

http://www.accu.org/bookreviews/public/reviews/0sb/beginner_s_c__.htm
http://www.accu.org/bookreviews/public/reviews/0sb/advanced_c__.htm

Regards,
--
-------------------------------------------------
Dipl.-Inf. (FH) Stephan Born

Humans may reply by replacing the obviously faked
part of my e-mail address with "brainforce".
-------------------------------------------------

[ 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





PostPosted: Sat Aug 28, 2004 2:30 am    Post subject: Re: Help me finding a good C++ book. Reply with quote

Bronek Kozicki <brok (AT) rubikon (DOT) pl> writes:
[snip]
Quote:
The one and the only true reference of C++ language is C++ standard
ISO/IEC 14882:2003 http://www.amazon.com/exec/obidos/ASIN/0470846747/
or PDF version
http://webstore.ansi.org/ansidocstore/product.asp?sku=INCITS%2FISO%2FIEC+14882%2D2003
however you DO NOT want to learn from it.

If you aren't going to learn from it, why buy it? Entertainment? :-)



[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]

Back to top
Bronek Kozicki
Guest





PostPosted: Sat Aug 28, 2004 11:04 am    Post subject: Re: Help me finding a good C++ book. Reply with quote

llewelly wrote:

Quote:
Bronek Kozicki <brok (AT) rubikon (DOT) pl> writes:
[snip]

The one and the only true reference of C++ language is C++ standard
ISO/IEC 14882:2003 http://www.amazon.com/exec/obidos/ASIN/0470846747/
or PDF version
http://webstore.ansi.org/ansidocstore/product.asp?sku=INCITS%2FISO%2FIEC+14882%2D2003
however you DO NOT want to learn from it.


If you aren't going to learn from it, why buy it? Entertainment? Smile

for reference. Which actually also means "learning", but strong
background is necessity.


B.

[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]

Back to top
Tabrez Iqbal
Guest





PostPosted: Sun Aug 29, 2004 11:10 am    Post subject: Re: Help me finding a good C++ book. Reply with quote

Felipe Magno de Almeida <felipe.almeida (AT) ic (DOT) unicamp.br> wrote

Quote:
I would like to buy a book about C++, but something more advanced than
the most I see around and around US$ 70-130. With template stuff, and a
lot(a really lot) of STL, and kinds of stuff people who claims to knows
C++ knows very little.
Thanks in advance.

Apart from the books already recommended, I also like this one:

STL Tutorial and Reference Guide -- by David R. Musser, Atul Saini

tabrez

[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]

Back to top
Felipe Magno de Almeida
Guest





PostPosted: Sun Sep 05, 2004 11:39 am    Post subject: Re: Help me finding a good C++ book. Reply with quote

Felipe Magno de Almeida wrote:

Quote:
I would like to buy a book about C++, but something more advanced than
the most I see around and around US$ 70-130. With template stuff, and a
lot(a really lot) of STL, and kinds of stuff people who claims to knows
C++ knows very little.
Thanks in advance.
Thank you all, i choosed Modern C++ Design, I havent received the book

yet. When I finish this one, maybe a get another from the list you made
here.
Thank you all again.

--
Felipe Magno de Almeida
Ciencia da Computacao - Unicamp
[email]felipe.almeida (AT) ic (DOT) unicamp.br[/email] - UIN: 2113442
Cause Rock and Roll can never die.
"if you want to learn something really well, teach it to a computer."
What is Communism?
Answer: "Communism is the doctrine of the conditions of the liberation
of the proletariat." (by Karl Marx)

[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]

Back to top
Display posts from previous:   
Post new topic   Reply to topic    C++Talk.NET Forum Index -> C++ Language (Moderated) All times are GMT
Page 1 of 1

 
Jump to:  
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


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.