BlogC++Understanding the inner workings of C++ smart pointers - The shared_ptrAfter last months Understanding the inner workings of C++ smart pointers - The unique_ptr with custom deleter you're curious about how the shared_ptr is implemented? Great! Here [...]C++Understanding the inner workings of C++ smart pointers - The unique_ptr with custom deleterLet's continue where I left off last time. You've seen a simple implementation of a unique_ptr in Understanding the inner workings of C++ smart pointers - The unique_ptr. Now, [...]C++Understanding the inner workings of C++ smart pointers - The unique_ptrHave you always wondered how the two smart pointers unique_ptr and shared_ptr work internally? Then, this series might give you a better understanding. [...]C++Calling a C++ member function with a null objectIn today's post, I'll show you what happens if you call a member function on a null object. [...]C++Exploring the impact of top-level cv-qualifiers on type-deductionIn today's post, I will continue where I left off with last month's post Understanding the role of cv-qualifiers in function parameters. This time, I will focus on type deduction. [...]C++Understanding the role of cv-qualifiers in function parametersIn today's post, I will continue where I left off with last month's post C++ top-level qualifiers explained. This time, I will focus on function parameters. [...]C++Level Up Your C++ Skills: Essential Tools and Resources for Effective PracticeToday, I want to share my C++ resources page with you: andreasfertig.com/cpp-resources/. [...]C++C++ top-level qualifiers explainedIn today's post, I would like to address the question, "What is a top-level cv-qualifier, and why is it important to understand?". [...]C++Aggregates: C++17 vs. C++20Sometimes the small changes between two C++ standards really bite you. Today's post is about when I got bitten by a change to aggregates in C++20. [...]C++C++20 Concepts applied - Safe bitmasks using scoped enumsIn 2020 I wrote an article for the German magazine iX called Scoped enums in C++. In that article, I shared an approach of using class enums as bitfields without the hassle of [...]Posts navigation〈 1 2 3 4 5 6 7 8 〉