News

Continuing the coverage of C++ classes, this month I'll look at copy and move semantics. Consider the following code: T t1, t2; // objects t1 and t2 live in the stack t2 = t1; // t1 is copied to t2 ...
Embedded C developers shy away from C++ out of concern for performance. The class construct is one of their main concerns. My previous article Code Craft – Embedding C++: Classes explored ...
In my article, "How Helper Variables Can Simplify Debugging," I mentioned that it might be handy to add special debug variables for the objects in your code. We can go further ... for our SimpleParam ...