18.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 …

18.9 — Object slicing

Let’s go back to an example we looked at previously: class Base { protected: int m_value{}; public: Base(int value) : m_value{ value } { } virtual const char* getName() const { return “Base”; } int getValue() const { return m_value; } }; class Derived: public Base { public: Derived(int value) …

18.3 — The override and final specifiers, and covariant return types

To address some common challenges with inheritance, there are two special identifiers: override and final. Note that these identifiers are not considered keywords — they are normal identifiers that have special meaning in certain contexts. Although final isn’t used very much, override is a fantastic addition that you should use …