I have a problem where I have an array of objects which can be of class B or C.
At some point, from prior information on how the array of objects was populated, I know an index that corresponds to an object of class B and I wish to access this object and treat it as a B.
I can do this using a downcast, but I am not happy with this.
The problem boils down to the need to store two incompatible types with a common indexing scheme. Is a downcast the most sensible thing to do?
I could make use of the visitor pattern but this would just lead to a visitor which does work if it encounters class B and throws an exception if it encounters class C which seems even more awkward a solution than the downcast option.