Let's say I have a base class Base:
class Base
{
}
And a derived classes Derived1
class Derived1: Base
{
int a;
}
Now I have a vector:
std::vector<Base*>vec;
And let's say that I have appended this with a pointer to an instance of the derived class and I now want to access it's a member a. Let's also say that I know for a fact that the class I am converting is in fact Derived1 and not another derived class.
I have read other answers saying that casting the classes in the vector to the derived classes is bad idea, so I wish to avoid this. I also wish to avoid having to create a separate vector for each derived class, as this will get very messy after a while. If someone has suggestion that goes against my approach of the problem all together, but still allows me to manage many derived classes easily I would be glad to hear it.
Others have suggested using smart pointers in the vector, but I don't understand how this allows me to access members of the derived class. If this is a good approach I would appreciate if someone could explain it.
As you asked suggestion: Do not use:
Rather do:
But more than that if you know
vec
will storeDerived1
why it is not like:Now if you dont do that, To access the member
a
you may do like: