Tagged Questions
0
votes
2answers
129 views
Accessing methods from subclass stored as superclass Java (downcasting?)
I'm working on an inventory program in Java. I have each object in the inventory stored as a relavent class type in a DefaultListModel and JList for each location; for example, if I have a video ...
0
votes
2answers
67 views
Create Class-Object from Generic
In a generic method, I don't seem to be able to access the generic type of the method at runtime (error: cannot select from a type variable).
public <A> A get(Animal a) {
Class ac = ...
0
votes
2answers
327 views
Call a method that requires a derived class instance typed as base class in vb.net or c#
Ok, I will do my best to explain.
I have 2 objects - "Spaceship" and "Planet" derived from a base "Obj".
I have defined several classes - Circle, Triangle, Rectangle etc. which all inherit from a ...
2
votes
6answers
895 views
Forced Downcasting in Java
I want to force a downcast on a object what can't be down casted and was wondering what the right approach would be.
The use case is that I have a list of rules that are checked and what will generate ...