25.10 — Dynamic casting

Way back in lesson , we examined the concept of casting, and the use of static_cast to convert variables from one type to another. In this lesson, we’ll continue by examining another type of cast: dynamic_cast. The need for dynamic_cast When dealing with polymorphism, you’ll often encounter cases where you …

25.9 — Object slicing

Let’s go back to an example we looked at previously: #include <iostream> #include <string_view> class Base { protected: int m_value{}; public: Base(int value) : m_value{ value } { } virtual ~Base() = default; virtual std::string_view getName() const { return “Base”; } int getValue() const { return m_value; } }; class …