vote up 10 vote down star
4

While I agree reading books is always a learning experience, sometimes you'd like to skip the theory and just jump till you reach the practical aspects. For example, I'd like to see a book that tells me that by writing:

char* a = "a string";

the value of a will (usually) get stored in the readonly portion of an executable, and explain what happens if you try to modify it. I'd like a book that explains why sometimes you need to cast something to a type, then to another, before dereferencing it, or when it all boils down to machine code, what will the difference between references and pointers be.

I'm sure there are other numerous language gotchas and quirks that you only encounter while doing practical stuff, this is why I'd like to find such a book. I hope you can point me towards one.

If it matters, I have previous programming experience, but my area of expertise are higher-level languages.

flag
1  
I don't know your situation, but if you are an experienced programmer who wants to learn C++, then Accelarated C++ would be an excellent choice. – StackedCrooked Nov 6 at 14:12

13 Answers

vote up 1 vote down

I'd recommend C++ FAQs (also a free Lite version on the web) and C++ Common Knowledge.

link|flag
vote up 1 vote down

This one

alt text

link|flag
vote up 0 vote down

the value of a will (usually) get stored in the readonly portion of an executable

Wrong. The character array a string\0 will be stored there, but the value of a is just a pointer to that array.

link|flag
That's a terminology issue. Not the point of the question, though. – xtofl Nov 16 at 8:53
vote up -1 vote down

Programming -- Principles and Practice Using C++ is without any doubt the best book to learn in a practical way C++. Bjarne who is the creator of this language say that. This book is the book used by himself in his classroom.

I have hundred of C++ books. Without any doubt this is the best one to learn and to get one step beyond.

link|flag
vote up -1 vote down

It's been a while since I did anything in C++, but my go-to book on the subject is The C++ Programming Language. I would recommend at least seeing if you can find it in a library (it can be an older version of the book) and checking it out to see if it meets your needs before you buy it, but it's helped me out when I needed it.

link|flag
1  
Google books is usually good enough place to do such things ;). – Roman Nikitchenko Nov 9 at 7:53
1  
Why the -1 on this? – Thomas Owens Nov 11 at 15:50
vote up -1 vote down

I'd go with either Effective C++ by Meyers, or C++ Primer by Addison Wesley. They're both much more about "Here's what the language does" than "Here's how you should design a bank program"

link|flag
1  
I like all the down-voted answers here with no explanations as to why or what a better book might be... – Afcrowe Nov 6 at 13:35
@Afcrowe, agreed – Luis B Nov 10 at 20:25
vote up 3 vote down

I suggest you find "Exceptional C++" and others Herb Sutter's books very useful in any case. This is why I placed Amazon link (check references). They are written usually in "what is wrong here and why" style, very useful. Mayers' books are even better as for my opinion ("Effective C++" and so on).

But I'm in doubt if they have right the question you posted as example.

link|flag
vote up -3 vote down

This question is not programming related. Most of the books provides the concepts and its entirely upto the reader which author or which book he likes and implement the concepts in the real world.

link|flag
Any suggesttion for downvoting me – Sachin Chourasiya Nov 6 at 11:45
1  
How recommending a practical book about programming is not programming-related? – ya23 Nov 6 at 12:18
I mean to say its all depends on your flavours, this question is not real and depends on individual taste. – Sachin Chourasiya Nov 6 at 12:24
Indeed, it is subjective, maybe not even a real question. But whatever it is, it still is programming related :) – ya23 Nov 6 at 14:02
1  
Disagree. There is number of definitely good C++ books and author of this question was pretty clear of what kind of books was requested. – Roman Nikitchenko Nov 9 at 7:51
vote up 15 vote down

I believe the C++ faq lite is what you need. If you like it, you can buy a book version.

link|flag
Yep. Forgot this one. – Sammy Nov 6 at 11:20
+1 I like this one, even a beginner can start with this! – Devil Jin Nov 6 at 12:39
vote up -3 vote down

Code Complete

link|flag
Although it's an equally good read to Mayers, it's focus is on general software engineering and not C++ gotchas. – Sammy Nov 6 at 11:27
Code Complete is not an answer to all questions about good programming book. – ya23 Nov 6 at 12:19
@ya23 - I didn't say it was an answer to all questions about good programming. To be frank, I don't think such a book exists. – Paul Mitchell Nov 6 at 12:42
I don't recommend "Code Complete". There is lot of much better books to spend time on. Too loot of text, too low things really helpful. And of course this is not really C++ book. – Roman Nikitchenko Nov 9 at 7:50
vote up 6 vote down

If you want to find out about that, you want to start understanding compilers and assembler. Once you look at assembler, many of these details become clear.

In your particular case, the value of a is probably on the stack (or certainly in mutable memory), and it contains a value that points to constant data. This is part of "understanding" pointers -> "a" is a pointer, and it points to data. The characteristics of the pointer are different to the characteristics of the thing it points to.

link|flag
Why do you think it would be on the stack? What use would that be? What compiler would do that? – xtofl Nov 16 at 8:51
I agree with your first remark though! – xtofl Nov 16 at 8:52
@xtofl: the pointer a is on the stack when declared in a function. You're problably referring to pointer a being declared outside of functions, in which case a is in the static data. – stefaanv Nov 16 at 9:04
As stefaanv says, the value of "a" is on the stack when declared in a function, and when declared outside of a function it as in the question it is global. In both cases it is mutable, not "read only" as described in the question. If the definition were 'char const a[] = "a string";', then things would be different. In that case "a" would be a symbol pointing to part of the executable image and it would be read only. The point of my answer is that much of understanding C is understanding that kind of distinction. – janm Nov 16 at 13:25
vote up 2 vote down

I think Accelerated C++ has what you're looking for.

link|flag
It's a really good book, but doesn't deal much with quirks and gotchas, which was what the question was about (the title of the question is quite misleading - Accelerated C++ indeed is a very practical C++ book). – Joonas Pulakka Nov 6 at 11:15
vote up 20 vote down

Effective C++ and More effective C++ by Scott Meyers. Although it's a very enlightening book, it's useful only if you know a little C++. The book explains many special cases, gotchas and coding best practices gained after years of experience. Although, I'm afraid it might not mention things like the one in your example, cause these scenarios are usually known to C++ programmers. Edit: Adding Effective STL on public demand and yes of course C++ FAQ lite.

link|flag
1  
+1 from me. Scott Meyers is essential reading. – duffymo Nov 6 at 11:14
5  
Add Effective STL to the list. – DevSolar Nov 6 at 11:36
+1. Effective C++ offers exactly what the OP is asking. – StackedCrooked Nov 6 at 14:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.