Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm a C# programmer that is looking to branch out. I'm bored of writing business software and want to start getting into graphics programming and games/simulators. So I figured, although writing that stuff isn't impossible in managed code, the "right" way to do that would be to look to C++, of course focussing on the language first, then getting into OpenGL or DirectX (or whatever).

Way way back ('98? '99?) I had tried and failed to really grasp Stroustrup's The C++ Programming Language. I know that this book is often not recommended for the beginner. Anyway, I picked it back up (in a much more recent printing) and I'm actually getting it and enjoying it. I also have a copy of his textbook, Programming: Principles and Practice Using C++, which, as I understand it, is really geared toward teaching programming, not necessarily C++. I'm certainly not arrogant enough to claim I don't have anything more to learn about programming, data structures, algoriths, etc., however I'm not a novice there either.

So my question is, with the goal of gaining the broader and more real-world-useful understanding of C++ and given my background, on which should I focus? The denser (as I perceive it) TCPPPL or the gentler Programming?

EDIT: I thank everyone for the responses. However, I've got a personal choice here to make between these two books. Granted there are other very good books out there, but I'm already a good length into both of the books I mention and I'd like to finish one. So, can anyone respond on which would be the better and why? Time is not an issue; I'm not looking (at this point) at an "accelerated" read.

share|improve this question
Stroustrup writes excellent reference material. However, if that is not what you need you might be better off with a totally different author instead. – Brian Mar 22 '10 at 20:14
I thank everyone for the responses. However, I've got a personal choice here to make between these two books. Granted there are other very good books out there, but I'm already a good length into both of the books I mention and I'd like to finish one. So, can anyone respond on which would be the better and why? Time is not an issue; I'm not looking (at this point) at an "accelerated" read. – Chris Simmons Mar 22 '10 at 20:24
Why not set those books down and come back to them once you have established a knowlege base? IMO you are wasting your time and being very inefficient by trying to learn C++ from these books. – John Dibling Mar 22 '10 at 22:11
+1 for trying to move to a less boring field. – advs89 Jun 29 '10 at 2:49

6 Answers

up vote 2 down vote accepted

I can certainly vouch for Stroustrup's book. While dense, it is the canonical text, and it is readable. In addition, the problems he gives are illustrative, educational, and fun. For example, I learned about Duff's Device working through his book. However, I am not familiar with Programming: Principles and Practice Using C++

share|improve this answer

For all programmers just getting in to or returning to C++ from a long absence, I always recommend Accelerated C++. It's short, not too dense, and actually focuses on using C++ in a real-world way. Instead of implementing a linked list, for example, it shows you how to use std::list<>. Usually a programmer who implements their own linked list to use in real code should be shot. This book is refreshing.

Once you have grokked C++ on a novice to intermediate level, it's time to start getting in to nitty gritty details. My recommendations for this are TCPPPL, the Standard itself, Meyer's Effective C++ series (though dated and I don't agree with everything) and other more advanced works such as Modern C++.

If you read and understand all those, you will know more about C++ than 90% of the C++ population.

Good luck.

share|improve this answer
Funny, I had Accelerated C++ I think shortly after it came out (author is Moo or Moos, right?). I remember it being quite good. And I lost it. Only book I think I ever just ... lost. – Chris Simmons Mar 22 '10 at 20:16
@Chris: Some new C++ programmer probably stole it. :) – John Dibling Mar 22 '10 at 20:33
@Ghris Koenig and Moo, actually. Husband and wife, and members of the original C++ dev team. It's probably the best book to learn C++ for someone that already understands programming concepts. – anon Mar 22 '10 at 21:16
+1 for Meyers excellent serie. It covers a lot of gotchas. – Matthieu M. Mar 23 '10 at 7:27

Well if your goal is to get into graphics then it might be better to pick up a book on OpenGL that uses C++ for examples. Work your way through the graphics book and use the C++ books for reference when you come up against a C++ construct that you don't understand. I think this would be a much funner way to learn. Plus you'd be killing two birds with one stone.

share|improve this answer
OpenGL is a C API, so I imagine the best books for it use C rather than C++. Good point in general, though. – Steve314 Mar 22 '10 at 20:41

Maybe you could take a look at other authors too? I used C++ Primer and I was quite satisfied.

share|improve this answer
I have an earlier edition of this from probably 9 years ago. Something about it rubbed me the wrong way. – Chris Simmons Mar 22 '10 at 20:29
So do I. I don't like some of the practices used there (like variable names), but anyway it proved quite useful, when I didn't have internet connection but wanted to code something anyway. – gruszczy Mar 22 '10 at 20:32

This has come up a few times before. However, to get you started I'd highly recommend Accelerated C++ - then more on to Scott Meyers' Effective C++ series.

Stroustrup's books are good for reference or background reading.

share|improve this answer

Check this page: http://www2.research.att.com/~bs/books.html
And this Question: The Definitive C++ Book Guide and List

I would suggest you to start writing some C++ code in parallel with TCPPPB. After you finish TCPPPB (if you will ever) - try D&E of Bjarne, as it is easy-reading and gives some insight to C++, programming in C++, how to use C++, when to not use C++ etc

And I think that in graphics / simulation / game dev algorithms and performance matter. So this field has its own view of "right" design.

share|improve this answer
As only mixin of reading/practice gives you a good memorization. – outmind Aug 20 '11 at 23:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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