tags:

views:

101

answers:

4

I am looking for quick reference guide(s) for both OO and C++. I have a few technical interviews coming up and I just want a quick reference that gives the basic overview of the fundamentals. (Nothing too in depth, as I've learned it all once before)

A: 

Here's a site that's dedicated to Object Oriented Programming in C++. It provides quick coverage of the basic concepts.

For pure OO info, you might want to review the basic terminology (not C++ related) on Wikipedia's Object-oriented design page.

Reed Copsey
+2  A: 

Have a look at this C++ tutorial online.

There is also Bruce Eckel's Thinking In C++ freely available book.

C++ FAQ Lite is searchable and Herb Sutter's Guru Of The Week series feature many tricky puzzles.

Gregory Pakosz
A: 

Stroustrup's FAQ is a good jumping off point to refresh some things. For a terminology refresher it's hard to beat the OO Wiki page.

John D.
+1  A: 

Steve Yegge at google has a couple of excellent summaries of interview questions here and here.

Andreas Brinck