Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c++ - relearning [closed]

Tags:

c++

I haven't done C++ for about three years and looking to get back and ready. What is the best way? any open source projects that I might want to look at to recall all the details and be ready for interviews? I started reading (again) C++ Primer 5th edition but was wondering whether there's more efficient way since I did program in C++ for few years before.

Just wanted to add: Does anyone know about open source projects related to finance? (e.g. servers, fix, etc)

like image 668
ra170 Avatar asked Sep 14 '09 22:09

ra170


2 Answers

I was facing a similiar situation a while back, and my conclusion was - no matter how many smart books you read nothing will suit you better then practicing.

Find some tutorials or set yourself some simple goals and learn by doing.

Hope that helps

PS. A friend of mine asked me once "How do you eat an elefant? - in small pieces, one at a time"

like image 56
Maciek Avatar answered Oct 11 '22 19:10

Maciek


I'd start in on a real project.

If nothing else, download an open source C++ project that's in the same realm as the jobs you want to target, and start modifying. Practice helps more than anything for being comfortable.

If you're going to focus on reading, or in addition to practice, I'd actually focus on reading books that work more on using C++ well, not necessarily learning C++. Effective C++, More Effective C++, and Effective STL are great for this - you'll learn new things while refreshing your old knowledge. You can always use the primer book as a reference to study things you've forgotten as you read about them elsewhere.

like image 44
Reed Copsey Avatar answered Oct 11 '22 20:10

Reed Copsey