Suppose I have this:
abstract class Command {
static void run (String[]argv) {}
}
class Slice extends Command {
static void run (String[]argv) {/* slicing code */}
}
class Dice extends Command {
static void run (String[]argv) {/* dicing code */}
}
I want to be able to iterate over the commands, so I wrote:
Class<Command>[] commands = {Slice.class,Dice.class}; /* compile error */
for (Class<Command> c : commands) {
if (some_string.equals(c.getName()) {
c.getDeclaredMethod("run",String[].class).invoke(argv);
return;
}
}
however, it appears that Slice.class and Dice.class cannot be placed into the same container as Class<Command>.
If I replace Class<Command> with Class everywhere, the code compiles with one warning:
[unchecked] unchecked call to getDeclaredMethod(java.lang.String,java.lang.Class<?>...) as a member of the raw type java.lang.Class
c.getDeclaredMethod("run",String[].class).invoke(argv);
which can, of course, be suppressed, but, I wonder, is there a more elegant solution?
(Of course, in C, this could have been done with an array of structs with two elements: a string and a pointer to a function).
runmethod) instead of Class instances and an instancerunmethod? – Daniel Pryden Nov 22 '11 at 20:24