This is the class:
class Foo {
public void bar(int a, Object b) {
}
}
Now I'm trying to get "reflect" this method from the class:
Class c = Foo.class;
Class[] types = { ... }; // what should be here?
Method m = c.getMethod("bar", types);
|
This is the class:
Now I'm trying to get "reflect" this method from the class:
|
|||
|
|
|
There's just an
An alternative is
The same applies on other primitives. |
||||
|
|