Theading Pool

  1. Basic threading pool
  2. Advanced threading pool
Read more

Vtable in C++

Also known as virtual function table, dispatch table.

Read more

Casting in C++

C-style casting, static casting, dynamic casting, reinterept casting

Read more

Static in C++

Static variables/functions, static in the context of class/struct

Read more

Virtual destructor

Virtual destructor is used to prevent memory leak in the context of polymorphism.

Read more

Virtual Function

Virtual function, pure virtual function, abstract class

Read more

constexpr specifier

The constexpr specifier declares that it is possible to evaluate the value of the function or variable at compile time.

Read more