Problem using overridden methods
-
You can cast instances of MyCClass1 and MyCClass2 to MyCClass and then to call the method doSomething:
@
// type cast derived-to-base
MyClass* pBase = dynamic_cast<MyClass*>(&storage[i]);
pBase->doSomething();
@ -
It actually occurred to me a bit after making this post that that's what I'd probably have to do. Is there a simple way of knowing which of MyCClass1 or MyCClass2 each of the objects in storage is without having some reference variable in MyClass?
-
What do you mean get back a 0? if I do
@
MyCClass1* pBase = dynamic_cast<MyCClass1*>(&storage[i]);
@then pBase will = 0?
-
[quote author="Psycho_Path" date="1331438598"]What do you mean get back a 0? if I do
@
MyCClass1* pBase = dynamic_cast<MyCClass1*>(&storage[i]);
@then pBase will = 0?[/quote]
Depends :) What tools do you use to build your source code?
In general dynamic_cast returns a null pointer to indicate a failure. If dynamic_cast of references is not possible a bad_cast exception is thrown.
But if you are using Microsoft Visual C++ 2005 or newer then 0 will be returned on failure and no exception will be thrown. Please check Microsoft documentation for details : http://msdn.microsoft.com/en-us/library/cby9kycs(v=vs.80).aspx
-
Hello
Try this out
@ void main(etc...)
{
vector<MyClass *> storage;
MyCClass1 *mcc1 = new MyCClass1();
MyCClass2 *mcc2 = new MyCClass2();
storage.push_back(mcc1);
storage.push_back(mcc2);
for (int i = 0; i < storage.size(); i++)
{
storage[i] ->doSomething();
}
}
@ -
Wilk's solution works, though be careful!
Any added functionality in your derived classes (MyCClass1 and MyCClass2) cannot be called this way and will have to be dynamically casted to their respective derived class pointers. Say you have a doMore() function in MyCClass1, but not in MyClass:
@storage[0]->doMore();@
The above will not work, whereas the below will:
@
dynamic_cast<MyCClass1 *>(storage[0])->doMore();
@Edit: Don't forget to use operator delete() after those operator new()s
-
[quote author="whpp" date="1331476875"]
Any added functionality in your derived classes (MyCClass1 and MyCClass2) cannot be called this way and will have to be dynamically casted to their respective derived class pointers.[/quote]
If you need such functionality, you'd better use a container of objects of derived classes (MyCClass1 and MyCClass2), not of base class (MyClass) or of pointers to objects of base class. If each of derived classes has additional functionality (doMore()) then you should add a virtual or a pure virtual method in your base class, as broadpeak said above. -
Virtual or not virtual, cast or no cast - this code wont work polymorphic
@ vector<MyClass> storage;
MyCClass1 mcc1();
MyCClass2 mcc2();
storage.push_back(mcc1); //you slice your objects here storage has a copy of MyClass "part" of your objects
storage.push_back(mcc2);
for (int i = 0; i < storage.size(); i++)
{
storage[i].doSomething();
}@
For polymorphic call you need pointers or references (and since vector can't hold references you must use pointers):
@
vector<MyClass*> storage;
MyCClass1 mcc1();
MyCClass2 mcc2();
storage.push_back(&mcc1);
storage.push_back(&mcc2);
for (int i = 0; i < storage.size(); i++)
{
storage[i]->doSomething(); //add virtual in the MyClass declaration
}
@
//just remember that the pointers stored in storage will be invalid when the objects get out of scope
or if you allocate dynamically you must delete the allocated memory before vector gets out of scope or before you remove the pointers from vector. -
@Zlatomir: Yes, that's basically Wilk's implementation, only using the address of-operator instead of all pointers.
[quote author="Wilk" date="1331481313"][quote author="whpp" date="1331476875"]
Any added functionality in your derived classes (MyCClass1 and MyCClass2) cannot be called this way and will have to be dynamically casted to their respective derived class pointers.[/quote]
If you need such functionality, you'd better use a container of objects of derived classes (MyCClass1 and MyCClass2), not of base class (MyClass) or of pointers to objects of base class. If each of derived classes has additional functionality (doMore()) then you should add a virtual or a pure virtual method in your base class, as broadpeak said above.
[/quote]Of course. That's a valid option, but that would change the semantics of the example at hand.
-
[quote author="whpp" date="1331487349"]@Zlatomir: Yes, that's basically Wilk's implementation, only using the address of-operator instead of all pointers...[/quote]
You miss the point of my post, i only posted the code because i missed Wilk’s codeSo the point was that the objects are sliced at push_back and you can do whatever you want with the objects (or their addresses) in the vector<MyClass> the objects are only MyClass objects - not MyClass1 so there is no way you can do any of MyClass1 specific functionality.
[quote author="whpp" date="1331487349"]...Of course. That's a valid option, but that would change the semantics of the example at hand.
[/quote]
You can't solve this issue without changing the semantics, because it's a misuse of polymorphism, since as i said earlier you don't have any derived objects into the vector. -
I think casting seems to make the most sense here as in my actual code, the vector is filled in a different function than the function that iterates through the vector to call the function that both sub-classes have. I don't really see any other way of accessing the other methods in each of the sub-classes the other way either. For the record, I'm using Qt to develop this code.
-
As i said i my first post casting will fail (for vector<MyClass>) there is no way to use MyClass1 (or any other derived functionality) because that part of your objects is lost. (this cast: MyClass1* pBase = dynamic_cast<MyClass1*>(&storage[i]); will fail for storage of type vector<MyClass>)
To use the overridden functions from that vector you need to use pointers into the vector, than the overridden functionality will work correctly and also the casting (of-course to the correct pointer type).
//also since MyClass is designed as base class don't forget the virtual destructor (for the case you call delete on a MyClass* that has the address of a dynamically allocated MyClass1 object)
-
Heh, since my last post I've come to realize what you've said to be very much true, however, in my actual code, as the objects created are being made in a function that ends before the call to the function that doSomething() gets called in is ran, the objects get deleted and the pointers are pointing to null memory. Is there any way to cast without using pointers that will work? Or should I just come up with a completely different structure for my code to run that doesn't involve this polymorphism?
Edit: Just realized what you pointed out in your previous post about the functionality being lost as the vector allocates memory of size MyClass and not either of the MyCClass classes. In any case, is there an easy solution here? Or do I just have to use 2 seperate vectors of type MyCClass1 and MyCClass2?
-
[quote author="Psycho_Path" date="1331568900"]Heh, since my last post I've come to realize what you've said to be very much true, however, in my actual code, as the objects created are being made in a function that ends before the call to the function that doSomething() gets called in is ran, the objects get deleted and the pointers are pointing to null memory. Is there any way to cast without using pointers that will work? Or should I just come up with a completely different structure for my code to run that doesn't involve this polymorphism?
Edit: Just realized what you pointed out in your previous post about the functionality being lost as the vector allocates memory of size MyClass and not either of the MyCClass classes. In any case, is there an easy solution here? Or do I just have to use 2 seperate vectors of type MyCClass1 and MyCClass2?[/quote]
I gave you solution in my first post:
@ void main(etc...)
{
vector<MyClass *> storage;
MyCClass1 *mcc1 = new MyCClass1();
MyCClass2 *mcc2 = new MyCClass2();
storage.push_back(mcc1);
storage.push_back(mcc2);
for (int i = 0; i < storage.size(); i++)
{
storage[i] ->doSomething();
}
}
@As you can see, you create objects using operator new(), so the pointers won't become invalid after exiting the function, where thery were created. From other hand you have to make destructor of base class (MyClass) virtual and explicity delete every object, when you've done:
@
foreach (MyClass *element,
storage) {
delete element;
}
@That's the classical way of creating a polymorphic behaviour. For more information try to read Bjarne Stroustrup C++ Programming Language, The (3rd Edition).
-
Thanks for your help and for re-posting what you'd already taken the time to post that I'd overlooked. Much appreciated.
-
Yes, point at Wilk . Polymorphism (with pointers) can help.
@
#include <iostream>
#include <vector>using namespace std;
class MyClass
{
public:
virtual void doSomething() const
{
cout << "MyClass::doSomething" << endl;
}
};class MyCClass1: public MyClass
{
public:
void doSomething() const
{
cout << "MyClass1::doSomething" << endl;
}
};class MyCClass2: public MyClass
{
public:
void doSomething() const
{
cout << "MyClass2::doSomething" << endl;
}
};/*
void writeall(vector<MyClass*>& s)
{for (int i = 0; i < s.size() ; i++) { s[i]->doSomething(); }
}
*/int main()
{
vector<MyClass*> storage;
MyCClass1* mcc1 = new MyCClass1();
MyCClass2* mcc2 = new MyCClass2();
storage.push_back(mcc1);
storage.push_back(mcc2);//writeall(storage); for (int i = 0; i < storage.size() ; i++) { storage[i]->doSomething(); } return 0;
}
@ -
[quote author="Zlatomir" date="1331641008"]broadpeak you forgot the virtual destructor for MyClass and also you forgot to delete the dynamic allocated memory.[/quote]
I have forgotten nothing :)
But in this very simple example I would have liked to avoid any complications: I focused only polymorphically behavior. Of course, you are right, in a bigger project we have to use virtual desctructor.