Up and Down Conversions
Hello everyone! 👋
🤯🤯 Have you ever ask yourself how upcasting and downcasting work in C++? If so, don't worry! In this
post, I will
illustrate two examples which might help you understand it a little bit better !
🔥🔥 𝐂𝐡𝐚𝐥𝐥𝐞𝐧𝐠𝐞 1:
🔍 This little piece of code illustrates the use of polymorphism, inheritance, and type casting in C++.
It defines an
abstract base class, Shape, with a pure virtual function, serving as an interface for derived classes.
Three concrete
classes (Circle, Square, and Rectangle) implement this interface, showcasing polymorphism. The main
function
demonstrates upcasting by assigning a derived class object to a base class pointer and invoking the
polymorphic draw
method. Additionally, the code exemplifies downcasting using dynamic casting, highlighting the
limitations and necessity
of a compatible type for successful conversions. Through these examples, the code elucidates the
flexibility and
extensibility provided by polymorphism in object-oriented programming, emphasizing the importance of
understanding the
relationships between base and derived classes for effective type casting.
🎮 Play with it at:
https://onlinegdb.com/eLfUghgkF
🔥🔥 𝐂𝐡𝐚𝐥𝐥𝐞𝐧𝐠𝐞 2:
🔍 The second little piece of code exemplifies the use of polymorphism and dynamic casting in a vector
of pointers to a
common base class, Shape, in C++. The program creates instances of derived classes (Circle, Square, and
Rectangle) and
adds pointers to these objects into a vector of Shape pointers. It attempts downcasting using dynamic
casting, checking
the success of the conversions before adding the resulting pointers to the vector. The code then
utilizes the vector to
demonstrate polymorphic behavior, calling the draw method on each element regardless of its specific
derived class type.
This showcases the power of polymorphism, enabling a uniform interface to interact with objects of
different types
through a shared base class. The dynamic casting instances underscore the flexibility of the polymorphic
vector,
accommodating various shapes and facilitating the invocation of their respective draw functions using a
common
mechanism.
🎮 Play with it at:
https://onlinegdb.com/0EnNSbx_X