Smart Pointer in C++

In C++, there is a uncommnon conception named smart pointer, it is rarely seen in other programming lauguages. So, what’s it? We could simply define it.... »

Type conversion in C++

  • static_cast

static_cast is the first cast you should attempt to use. It does things like implicit conversions between types (such... »