As an example:
Shouldn't the second d.print() call during upcasting print "base"?
Isn't it a "d" derived object that has been upcasted to a base class object?
And what advantages does downcasting have?
Could you describe upcast and downcast in more detail?
#include <iostream>
using namespace std;
class Base {
public:
...READ MORE
Jul 26, 2022
in C++
by
Nicholas
• 7,760 points
•
899 views