The Surprising Case // filepath: rvo_example.cpp class Widget { public: Widget() = default; Widget(const Widget&) = default; // Copy … ...more
What is SIOF? The Static Initialization Order Fiasco (SIOF) is a common C++ issue that occurs when initialization order of static objects across diffe… ...more
All kinds of sorting algorithms, re-visited! Easiest Bubble Sort Bubble sort is the easiest sorting algorithm, it can be considered as an inferior ver… ...more
Recent