Pergunta

Having some invokeMethod that takes in (java.lang.String method_name, Object[] params, Class[] params_classes) How would you invoke some method with signature like void MyMethod()?

Foi útil?

Solução

Use new Object[0] and new Class[0] to specify empty arrays.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top