473,569 Members | 2,402 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Book review

Hello all,

Im some way in C and i have to start on C++ to. I want your opinions on
Teach yourself C++ in 21 days by Jessi Liberty. Can I go with it as my
first book are are there better ones?

Thanks to all.

--
Email: The handle, (dot seperated), at gmail dot com.
Mar 14 '07 #1
14 2348
On 14 Mar, 11:52, At_sea_with_C <blindal...@dev .null.invalidwr ote:
Hello all,

Im some way in C and i have to start on C++ to. I want your opinions on
Teach yourself C++ in 21 days by Jessi Liberty. Can I go with it as my
first book are are there better ones?

Thanks to all.

--
Email: The handle, (dot seperated), at gmail dot com.
If you want to learn C++ with a very good book try:
C++ How To Program 5th ed. by Deitel&Deitel
it's very well-written!
Enjoy

Mar 14 '07 #2
On Mar 14, 10:52 am, At_sea_with_C <blindal...@dev .null.invalid>
wrote:
Hello all,

Im some way in C and i have to start on C++ to. I want your opinions on
Teach yourself C++ in 21 days by Jessi Liberty. Can I go with it as my
first book are are there better ones?
A colleague has this book, I found some mistakes in it on a cursory
examination, and it is somewhat out of date. I know the "in 21 days"
name is because there is a series of such books, but really the title
does not inspire confidence that the author or publishers grasp the
true difficulty of learning C++ !

"Accelerate d C++" by Koenig & Moo is the book many of the greybeards
on this group recommend, not read it myself but apparently it teaches C
++ concepts first and C-style low-level stuff later, which approach
has something to recommend it.
Mar 14 '07 #3
On 14 Mar, 12:38, "tragomaskhalos " <dave.du.verg.. .@logicacmg.com >
wrote:
On Mar 14, 10:52 am, At_sea_with_C <blindal...@dev .null.invalid>
wrote:
Hello all,
Im some way in C and i have to start on C++ to. I want your opinions on
Teach yourself C++ in 21 days by Jessi Liberty. Can I go with it as my
first book are are there better ones?

A colleague has this book, I found some mistakes in it on a cursory
examination, and it is somewhat out of date. I know the "in 21 days"
name is because there is a series of such books, but really the title
does not inspire confidence that the author or publishers grasp the
true difficulty of learning C++ !

"Accelerate d C++" by Koenig & Moo is the book many of the greybeards
on this group recommend, not read it myself but apparently it teaches C
++ concepts first and C-style low-level stuff later, which approach
has something to recommend it.
yes you give him a good advice but the questions are:
how many time I must spend to learn the language?
Do give me, that book, a full complete view of the language?

However I think that as the C++ is a complex language (not like
Java...) should be
better to learn it with a complete and "not speed" book and spending
lot time
but this is only my opinion...

Mar 14 '07 #4
At_sea_with_C wrote:
Hello all,

Im some way in C and i have to start on C++ to. I want your opinions on
Teach yourself C++ in 21 days by Jessi Liberty. Can I go with it as my
first book are are there better ones?

Thanks to all.
I haven't yet read the book that you have. I started with The C++
Programming Language (Special Edition) by Bjarne Stroustrup. It is a
fine book and a good reference. It served me well although many claimed
that the book is confusing. This may be due to the fact that this book
is not a crash course and strives to present every aspect of C++. So
this one is my recommendation.

Many may also suggest Accelerated C++ by Koenig & Moo. I personally
haven't read through it yet so I can't give you a recommendation. But
from various reviews it seems to be a better book than the one you
currently have.

Regards,
Ben
Mar 14 '07 #5
At_sea_with_C wrote:
Hello all,

Im some way in C and i have to start on C++ to. I want your opinions on
Teach yourself C++ in 21 days by Jessi Liberty. Can I go with it as my
first book are are there better ones?

Thanks to all.
You can find some c++ book reviews at accu.org:
http://accu.org/index.php/book_revie...t&term=C%2b%2b

or there's a list at the FAQ:
http://www.parashift.com/c++-faq-lite/

You may also want to take a look at Bruce Eckel's Thinking in C++; vols
1 and 2 are available for free download at the author's website.
Mar 14 '07 #6
nw
Im some way in C and i have to start on C++ to. I want your opinions on
Teach yourself C++ in 21 days by Jessi Liberty. Can I go with it as my
first book are are there better ones?
I strongly recommend "Accelerate d C++". I relearned C++ from this book
after programming C++ badly for a couple of years. It makes you learn C
++ "the right way" and requires almost no prior programming experience
(it's also short!). Some of your C knowledge may hinder you in
learning C++, it did me, this book should help you get over those
problems. Accelerated C++ also teaches you the STL right from the
start, in C++ I find it very important to be confident with the STL in
order to write good (or at least better) code.

Mar 14 '07 #7
On Mar 14, 7:05 am, "josh" <xdevel2...@yah oo.comwrote:
If you want to learn C++ with a very good book try:
C++ How To Program 5th ed. by Deitel&Deitel
it's very well-written!
I haven't seen the 5th edition, but the 3rd was given a negative
review at ACCU:

http://accu.org/index.php/book_revie...22766110593287

I, too, would recommend to you _Accelerated C++_ by Koenig and Moo.

Cheers! --M

Mar 14 '07 #8
On Mar 14, 8:11 am, "mlimber" <mlim...@gmail. comwrote:
On Mar 14, 7:05 am, "josh" <xdevel2...@yah oo.comwrote:
If you want to learn C++ with a very good book try:
C++ How To Program 5th ed. by Deitel&Deitel
it's very well-written!

I haven't seen the 5th edition, but the 3rd was given a negative
review at ACCU:

http://accu.org/index.php/book_revie...iew=cp003204&t...

I, too, would recommend to you _Accelerated C++_ by Koenig and Moo.

Cheers! --M
My experience tells me that the part of the answwer as to which book
to use is dependant on the application you intend to use C++ for, or
the company that requires to learn C++. I have heard of interviews
where a significant portion of the questions deal with pointers and C-
style strings (companies like EA and Microsoft). Some people would
describe these companies as "C with classes" developers, but if that
is what the potential employer wants, and you want to work for them,
you have little choice! If you are going for such an iterview, the "C+
+ How To Program" text will serve you better than the "Accelerate d C+
+" text.

I use both texts for my C++ course, because they both have their
strengths. The "C++ How To Program" is the required text while the
"Accelerate d C++" text is optional (I assign optional readings and
optional exercises from the text). When I can obtain/create suitable
slides for the Accelerated C++ text, I will likely switch to the other
way around.

Cheers,

Bob L.

Mar 14 '07 #9
On Mar 14, 8:05 am, "josh" <xdevel2...@yah oo.comwrote:
On 14 Mar, 11:52, At_sea_with_C <blindal...@dev .null.invalidwr ote:
Hello all,
Im some way in C and i have to start on C++ to. I want your opinions on
Teach yourself C++ in 21 days by Jessi Liberty. Can I go with it as my
first book are are there better ones?
Thanks to all.
--
Email: The handle, (dot seperated), at gmail dot com.

If you want to learn C++ with a very good book try:
C++ How To Program 5th ed. by Deitel&Deitel
it's very well-written!
Enjoy
no! it is bad and bloated
stay away from this book

Diego

Mar 15 '07 #10

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

Similar topics

0
1980
by: Google Mike | last post by:
You readers in comp.lang.php may use PostgreSQL, so you might find this review useful... ISBN 0-7357-1257-3 "PostgreSQL", Copyright 2003 by Sams Publishing. Authors: Korry Douglas, Susan Douglas. Subtitle: "A comprehensive guide to building, programming, and administering PostgreSQL databases". I am not completely happy with the book....
24
3054
by: Kari Laitinen | last post by:
I have written a computer programming book that uses C++. The book is for beginners in the field of computer programming, but it might give useful ideas also for more experienced programmers. Computer programs are presented in a very easy-to-read way in my book. To find out what that exactly means, please read the pages at ...
7
1871
by: TechBookReport | last post by:
TechBookReport have just published a review of 'C Programming In Easy Steps', if you're a C beginner looking for an intro book (or an ex-C developer looking for a quick refresh), ready why this is a book to consider. Read the review here: http://www.techbookreport.com
21
2417
by: Kiran | last post by:
Hi, As I am preparing for Microsoft Certification, Can some one Suggest me one good book for C# Thanks Kiran
1
326
by: Jesse Liberty | last post by:
jliberty@LibertyAssociates.com] I'm looking for a few additional volunteers to help with preliminary review of a new book I'm writing on Visual Basic 2005. You will be asked to read about 25 chapters (each 25-35 pages) and to respond to them within a few days of their posting (that is a very demanding requirement). I'm looking for...
1
1585
by: backupmeister | last post by:
My name is W. Curtis Preston, and I'm the author of "Backup & Recovery" (formerly "Unix Backup & Recovery") from O'Reilly & Associates. (http://www.oreilly.com/catalog/unixbr/ ) We're updating the book for 2006 and adding a chapter on SQL Server backup and recovery. Someone has already written what appears to be a strong chapter. The...
6
1630
by: backupmeister | last post by:
My name is W. Curtis Preston, and I'm the author of "Backup & Recovery" (formerly "Unix Backup & Recovery") from O'Reilly & Associates. ( http://www.oreilly.com/catalog/unixbr/ ) We're updating the book for 2006 and adding a chapter on DB2 backup and recovery, and two IBM folks have written what appears to be a strong chapter. The problem...
1
1399
by: Tony Lawrence | last post by:
Probably a lot of you here are already old hands at Ajax, but I haven't started doing this yet. Part of the reason was that I really didn't understand where Ajax would be useful to my own site, and also that my experiences with early Javascript put me off on that a bit. "Understanding Ajax" by Joshua Eichorn helped me with both of those...
76
4001
by: lorlarz | last post by:
Crockford's JavaScript, The Good Parts (a book review). This shall perhaps be the world's shortest book review (for one of the world's shortests books). I like Douglas Crockford (because I am a crabby old man too; plus he _is_ smart and good).. But, how can he write a book on the good parts of JavaScript and not mention functions that...
0
7703
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7618
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7926
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8138
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7983
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6287
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
5223
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3647
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1228
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.