I have had serveral situations when i would like to do that. This could be an example:
Considere a possible implementation for the chess game. We define the abstract class 'Piece' and classes inheriting from it: 'bishop' 'peon' 'tower' 'horse' 'queen' etc
We may have our peon about to reach the end of the board, and it may be required for a method called onto that peon object to change the class of that object to 'Queen', 'horse' or whatever.
So my question is, is there any way to do that in C++ or Java? if not, in any other language? Also, are there other aproachs for this situations in general?
