I was programming in c++ at university but have been programming in java for most of my professional life(about 5 years) but I now need to recapture those c++ skills. I have tried a couple of books but they are too basic. Is there some kind of example book on c++ that I can use to revisit c++ in a project style format?
Asked
Active
Viewed 3,047 times
3
-
3You might want to look at the [C++ book list](http://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list). Under the circumstances, I'd consider *Accelerated C++*. – Jerry Coffin Jan 29 '12 at 18:52
-
I think the comments and reviews on this book shows its the best for my situation so will go for that one. Thanks all for the help http://www.amazon.com/Professional-C-Wrox-Guides/dp/0470932449/ref=cm_cr_pr_product_top – Farouk Alhassan Jan 29 '12 at 20:41
4 Answers
4
When I was in a similar situation I read Scott Meyers' books. They both helped me to refresh C++, as well as widen my knowledge. Start with Effective C++ which contains a number of basic dos and don'ts with C++ to avoid common pitfalls.

Anders Abel
- 67,989
- 17
- 150
- 217
-
Thanks, but those books are very dry. I want something that takes me through a full application instead. Then I can come back to these ones you suggested. – Farouk Alhassan Jan 29 '12 at 19:12
0
There are many good books available for c++, but if you are really looking to refresh C++ then I would recommend c++ How to Program by H. M. Deitel - Deitel & Associates. It has very good case studies n its fun to learn.

DotNetUser
- 6,494
- 1
- 25
- 27
-
I tried the deitel book and quickly got bored. I don't want to learn Strings. I want to be working on something constructive – Farouk Alhassan Jan 29 '12 at 19:05
-
see this thread- http://stackoverflow.com/questions/74405/what-is-the-best-c-book-for-an-intermediate-to-expert-developer – DotNetUser Jan 29 '12 at 20:10
-1
I would like to recommend you the book:
«C++ Primer (5th Edition)», Stanley B. Lippman, Josée Lajoie, Barbara E. Moo (Amazon).

Sergey Vyacheslavovich Brunov
- 17,291
- 7
- 48
- 81
-
Highly disagree on this book in terms of "by example" - this is really just a great reference book, very thorough and well written introduction to the language. It would be a great book to have alongside an example book – netpoetica Sep 16 '13 at 02:29
-
@Keith, the book contains **many examples** have been revised to use the language features and demonstrate how to make the best use of them. But your mileage may vary. – Sergey Vyacheslavovich Brunov Sep 16 '13 at 07:07