Tag Archives: C++

Review of Exceptional C++

Exceptional C++ Herb Sutter Addison-Wesley, 2000 I had been working with the C++ programming language for a number of years before I read this book and I thought I knew the language. This book provides 47 problems with included solutions. Trying to solve the problems is very important. Each one tests an area of C++… Read More »

The Forgotten OO Principle

When talking about Object Oriented Programming, there are several principles that are normally associated with the paradigm: polymorphism, inheritance, encapsulation, etc. I feel that people tend to forget the first, most important principle of OOP: object lifetime. One of the first things that struck me when I was learning OOP in the C++ programming language… Read More »