-
In the previous post I teased a little about vtables, how they work, and whether people were familiar with them. Before I go into detail into that I'd like to rehash the notion of polymorphism first. It may be obvious already to OOP programmers or at least those who have been educated about OOP even...
-
As I do keep tabs on what’s going on with C++ around the web, I chanced upon this short and succinct article about ‘free’ and ‘delete’ not returning memory to the OS from Thought Garage which starts with:
When you call free() or delete(), it will NOT really release any memory...
-
Sometimes you want to be able to write applications in C++ and expose a way of easily extending it by offering a scripting interface embedded to your application. Why re-invent the wheel when you can embed existing programming languages like Python into your C++ application? This article covers how you...