How can we call a method which name is string at runtime. Can anyone show me how to do that in Java and C.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In java it can be done through the reflection api.
Have a look at
Class.getMethod(String methodName, Class... parameterTypes).A complete example (of a non-static method with an argument) would be:
Which outputs:
Hello World: 5