Live data from Hacker News

Ask HN: What did you do to become an expert in C++?

news.ycombinator.com

11–12 of 12 posts

Re: Ask HN: What did you do to become an expert in C++?

#11

Read the Exceptional C++ series (shorter, 'highlights' version is C++ Coding Standards), Modern C++ Design, and Andrei Alexandrescu's unpublished columns.

Gotta second this, after reading these books you'll have a completely different perspective on how to write code in C++. It's completely different than C.

Re: Ask HN: What did you do to become an expert in C++?

#12
You don't master it, so instead I will write about what I did to learn reasonable amounts of it.

I wrote lots of code, tried use it and then fed what I learnt back into the design. Repeatedly.

I read tons of other people's code. Large, running projects. Example code won't work.

Occasionally, I read books, but the only one I ever read all the way through was /Teach Yourself C++ in 21 Days/ back in 1996 (and its title is ridiculous; I'm still learning every day).

Post reply on HN