473,383 Members | 1,922 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,383 software developers and data experts.

I'm Looking For A *Good* C++ Reference Book

Hello. I'm looking for a good C++ reference book. I learned C++ a year
ago. It is very broad and I need something to refer to. Particularly
about syntax (using -> versus ".", etc.), using classes, C++ functions,
etc. Basically, a good overall C++ language reference.

I need a reference book. Not a "begin from scratch" instruction book,
unless there is one that is also a good reference.

Also, does anyone know of any good standard library reference books?

Please provide feedback. Thanks.
Jul 22 '05 #1
12 2201
Raque wrote:
Hello. I'm looking for a good C++ reference book. I learned C++ a year
ago. It is very broad and I need something to refer to. Particularly
about syntax (using -> versus ".", etc.), using classes, C++ functions,
etc. Basically, a good overall C++ language reference.

I need a reference book. Not a "begin from scratch" instruction book,
unless there is one that is also a good reference.

Also, does anyone know of any good standard library reference books?

Please provide feedback. Thanks.


_The_C++_Programming_Language_

The Josuttis book on the standard library is a good reference, too. If
you're looking for an STL intro, try this:
http://www.cs.rpi.edu/~musser/stl-book/cover.jpg

Jul 22 '05 #2
The ONLY book you need is Bjarne Stroustrup's The C++ Programming Language. However, if you need a reference on the standard libraries as well, Josuttis's The C++ Standard Library is an excellent choice. Since you said you needed mostly syntax though, I'd definitely recommend the Stroustrup. Get the special edition, it's really nice. Hard cover...double book marks...2 extra appendices...good stuff.
Jul 22 '05 #3
"Mark Bruno" <ya*************@yahoo.com> wrote in message
news:iM********************@comcast.com
The ONLY book you need is Bjarne Stroustrup's The C++ Programming
Language.


I regularly refer to Stroustrup's text. It has the information that I am
after more often than not, but there are still lots of occasions when I have
to look elsewhere. C++ is too complex for any single textbook to have all of
the answers. Such a book would be too long to be acceptable to publishers.

Stanley Lippman and Josee Lajoie's C++ Primer is another good book (it is
more advanced than the name suggests). No doubt others can supply further
suggestions. I would say you should have at least 4 (and preferably 10)
reference books.
--
John Carson
1. To reply to email address, remove donald
2. Don't reply to email address (post here instead)

Jul 22 '05 #4
"Mark Bruno" <ya*************@yahoo.com> wrote in message
news:iM********************@comcast.com...
The ONLY book you need is Bjarne Stroustrup's The C++ Programming Language. However, if you >need a reference on the standard libraries as well,
Josuttis's The C++ Standard Library is an excellent >choice. Since you said
you needed mostly syntax though, I'd definitely recommend the Stroustrup.Get the special edition, it's really nice. Hard cover...double book

marks...2 extra appendices...good >stuff.

Have both of those, and would also recommend them.

Look here for lots of reviews:

http://www.accu.org/bookreviews/public/index.htm

--
Derek
Jul 22 '05 #5
Hi,

By the process of certain things happening, Raque managed to say...
I need a reference book. Not a "begin from scratch" instruction book,
unless there is one that is also a good reference.


The C++ Standard Library - Josuttis
The C++ Programming Language - Stroustrup
C++ Templates - Josuttis
Effective STL - Meyers

These should provide what you need (and I would say, be on everyone's book
shelf)

TTFN

Paul

--
One OS to fool them all
One browser to find them
One email client to bring them all
And through security holes, blind them...

Jul 22 '05 #6
Raque <s> wrote in message news:<3f******************************@news.terane ws.com>...
Hello. I'm looking for a good C++ reference book. I learned C++ a year
ago. It is very broad and I need something to refer to. Particularly
about syntax (using -> versus ".", etc.), using classes, C++ functions,
etc. Basically, a good overall C++ language reference.

I need a reference book. Not a "begin from scratch" instruction book,
unless there is one that is also a good reference.

Also, does anyone know of any good standard library reference books?

Please provide feedback. Thanks.


1) Thinking in C++ (Bruce Eckel) is a good book to work your way
through the intricacies of the language.
2) The C++ Programming Language (Stroustrup) is of course the bible
that you got to have.
3) Effective C++ - Scott Meyers
4) More Effective C++ - Scott Meyers
Jul 22 '05 #7
Raque <s> wrote:
Hello. I'm looking for a good C++ reference book. I learned C++ a year
ago. It is very broad and I need something to refer to. Particularly
about syntax (using -> versus ".", etc.), using classes, C++ functions,
etc. Basically, a good overall C++ language reference.

I need a reference book. Not a "begin from scratch" instruction book,
unless there is one that is also a good reference.

Also, does anyone know of any good standard library reference books?


The only pure C++ reference I know is the O'Reilly C++ "Nutshell"
book. It is impossible to read just for the heck of it; you flip it
open to the part you want, and it tries to give you the answer quickly
so you can put the book down. There are tons of other C++ books that
you could use as a reference, but they are not really references; they
attempt to teach the language in some way or another.

--
Dave O'Hearn
Jul 22 '05 #8

"Dave O'Hearn" <da******@pobox.com> wrote in message news:3e**************************@posting.google.c om...
The only pure C++ reference I know is the O'Reilly C++ "Nutshell"
book. It is impossible to read just for the heck of it; you flip it
open to the part you want, and it tries to give you the answer quickly
so you can put the book down.


Agreed. While some of it is a bit awkward in some places, it does attempt
to be a sane explanation of the language. I should make the disclosure that
O'Reilly paid me to review that book (primarily to check conformance with
the standard) so I have confidence that it's fairly accurate.

Jul 22 '05 #9
For quick answers I suggest "Teach Yourself C++ in 10 Minutes." It is very
small, but gets straight to the point and it covers pretty much everything
C++ can do by itself. It won't cost you a whole lot either.
--zealott

Raque <s> wrote in message
news:3f******************************@news.teranew s.com...
Hello. I'm looking for a good C++ reference book. I learned C++ a year
ago. It is very broad and I need something to refer to. Particularly
about syntax (using -> versus ".", etc.), using classes, C++ functions,
etc. Basically, a good overall C++ language reference.

I need a reference book. Not a "begin from scratch" instruction book,
unless there is one that is also a good reference.

Also, does anyone know of any good standard library reference books?

Please provide feedback. Thanks.

Jul 22 '05 #10
zealott wrote...
For quick answers I suggest "Teach Yourself C++ in 10 Minutes." It is very
small, but gets straight to the point and it covers pretty much everything
C++ can do by itself. It won't cost you a whole lot either.


Unfortunately, it also seems to have a few problems:

http://www.accu.org/bookreviews/publ.../t/t001917.htm

Cheers,
Chris

Jul 22 '05 #11

"Chris Newton" <ch*********@no.junk.please.btinternet.com> wrote in message
news:bs**********@hercules.btinternet.com...
zealott wrote...
For quick answers I suggest "Teach Yourself C++ in 10 Minutes." It is
very small, but gets straight to the point and it covers pretty much
everything C++ can do by itself. It won't cost you a whole lot either.


Unfortunately, it also seems to have a few problems:

http://www.accu.org/bookreviews/publ.../t/t001917.htm


May or may not make a difference, but the above review is dated 1999. The
2nd edition of the book dates from 2002.


Jul 22 '05 #12
>Raque <s> wrote in message
news:3f******************************@news.terane ws.com...
Hello. I'm looking for a good C++ reference book. I learned C++
a year ago. It is very broad and I need something to refer to.
Particularly about syntax (using -> versus ".", etc.), using
classes, C++ functions, etc. Basically, a good overall C++
language reference.

I need a reference book. Not a "begin from scratch" instruction
book, unless there is one that is also a good reference.

Also, does anyone know of any good standard library reference
books?

Please provide feedback. Thanks.


Maybe "C++ in a Nutshell" from Ray Lischner (O'Reilly, 2003) is what you
are looking for.

Peace

Gerd
Jul 22 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: jodocus | last post by:
hi, I am new to python (but not to programming - have programmed in many other languages like C++/lisp/perl etc.) and I would like to buy a good book. The local bookstore has no books about...
3
by: Jack Fox | last post by:
Ideally I could drill down through objects, events, methods, and properties... ....and it would tell me where the IE (not DHTML) and Netscapte DOMs are the same and where they differ, ....and...
13
by: Gabriel Reid | last post by:
Greetings, I'm looking for any books that the members of this group may have to recommend for C#. I have experience with a number of programming languages (probably most relevant would have to...
6
by: Shawn | last post by:
I have been fooling around with C# for about a half year doing simple little programs. i would like to delve into more complex UI designs such as docking windows, the outlook task bar. Does anyone...
6
by: Christoph | last post by:
I was browsing both the Amazon and Barnes & Noble websites looking for some good books but there appears to be *so* many and it's hard to tell which are going to be good or not. I'm looking for...
7
by: boostngti via DotNetMonster.com | last post by:
I have 4 years of programing exp. with Coldfusion, and I am begining to learn ASP.NET C# and was wondering if some people could suggest some good books. I went to Barnes & Noble the other day...
7
by: noid droid | last post by:
Greetings. I received 4 VB .NET books and looking through the indices and tables of contents, I see that none of them addresses multithreading in VB ..NET. I just bought a bunch of books because...
3
by: Carl Youngblood | last post by:
I own the 3rd edition of Stroustrup's THE C++ PROGRAMMING LANGUAGE and have read most of it, but I find its style to be more suitable for reference than for tutorial. I still have a lot to learn...
6
by: WJRutledge | last post by:
Just like the subject says, I'm interested in taking up PHP and would like to know if anyone knows of any books that are a must have. I know there are tons of books out there on every language, but...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.