in my project i want to invoke the main method which is static . I got the object of type Class but i am not able to create an instance of that class and also not able to invoke the static method "main".Help
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
In case the method is private use |
|||
|
|
|
Fromthe Javadoc of Method.invoke(): If the underlying method is static, then the specified obj argument is ignored. It may be null. What happens when you Class klass = ...; Method m = Klass.getDeclaredMethod(methodName, paramtypes); m.invoke(null, args) |
|||
|
|
|
|||
|