I would like to know how to solve this problem. I don’t understand what this question is asking me:
dynamic_cast<Y>(new X)
- To Be legal?
- To probably succeed?
|
I would like to know how to solve this problem. I don’t understand what this question is asking me:
|
||||
|
First, to be legal, It will succeed if Finally, there is one special case (which will also succeed): if
|
|||||||||||
|
|
The question should be:
Then the answer is fairly straight-forward: Moreover, there are other valid uses of dynamic casts on polymorphic types (i.e. classes with virtual functions). If (The reasoning for the present is simpler than for an arbitrary dynamic cast, since we already know the dynamic type of the castee. In general, dynamic casts can do far more complicated things.) |
|||||||||||
|
|
It's completely unanswerable without knowing Y and X. For example, if Y is int, then illegal. Else, if Y is a pointer to a polymorphic class, it might succeed, or it might not, but there's certainly nothing "probable" about it. Finally, this is a rather nasty memory leak. |
|||
|
|
YandXmake this code legal and which combinations of types forYandXmake it likely to succeed. For example, ifYis a base class ofXand has a virtual destructor, ... – David Schwartz Dec 2 '12 at 12:07