Possible Duplicates:
The Definitive C++ Book Guide and List
New to C++, help me get started

I'm 15 years rusty on C++; STL was relatively new then. I've done mostly Java since then, and probably have to refresh pointers and memory allocation.

I was thinking of picking up the newer version of Stroustrup's C++ book, and reading cover to cover; what else should I do to head towards professional quality code?

link|improve this question
1  
practice writing real code – tenfour Aug 18 '10 at 15:24
2  
Use this site religiously. :) – XstreamINsanity Aug 18 '10 at 15:25
That's no way a duplicate. There is, however, another recent duplicate. – DeadMG Aug 18 '10 at 15:33
1  
Definite duplicate of stackoverflow.com/questions/3504238/…. – DeadMG Aug 18 '10 at 15:33
1  
Note that lots of things have changed since C++ first started out, as people figure out what works and what doesn't. Good for you to attempt to tackle a language like C++, but pretend that you've never learned Java while doing that. Java and C++ does things very differently. – In silico Aug 18 '10 at 15:35
show 2 more comments
feedback

closed as exact duplicate by Constantin, DeadMG, Matthieu M., Troubadour, greyfade Aug 18 '10 at 16:41

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

For what it's worth, I picked up "The C++ Standard Library" by Josuttis and it has some great information for the STL.

link|improve this answer
That book is a little more readable. Stroustrup is a good reference but your suggestion is better as far as reading through. – Chance Aug 18 '10 at 15:33
feedback

You want to do a lot more than learn about pointers and memory allocation. People write C++ much differently from when you did in 1995.

I don't think The C++ Programming Language is a good book to learn things in general. It's written in more of a reference style.

Look at this question for an excellent book list. Start with something like Accelerated C++ and pick up other stuff as you go along.

link|improve this answer
feedback

Re-read Meyer's Effective C++ and More Effective C++, which show how to avoid about 90 C++-specific coding mistakes.

link|improve this answer
HEY !! Mine has only 85, need to buy the new one. Damn you ChrisW :) !!!! – DumbCoder Aug 18 '10 at 16:28
feedback

I like the C++ FAQs. Specifically make sure you understand

  1. Default constructor, copy constructor, destructor, operator= (what defaults do, when you should define them, etc)
  2. Resource Acquisition is Initialization (RAII)
  3. Using smart pointers (look at boost)
  4. Exception safety

Those are just killer if you don't get it.

link|improve this answer
Great link, thank you! – Dean J Aug 19 '10 at 16:53
feedback

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