I have one base class BASE and couple inherited class BASE_1, BASE_2,, BASE_3. I have in code BASE test but how to discover on what class it points: BASE_1, BASE_2 or BASE_3 ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||
|
|
|
I am not clear what you are asking but you can make use of If it is something like
|
|||
|
|
|
To see the class name of a particular object, you can use:
But you shouldn't generally care, since any functionality that depends on which subclass you have should be implemented as overridden ("polymorphic") functions in those subclasses. |
|||
|
|
|
You can use
|
|||
|
|