जवाबों:
// String.class here is the parameter type, that might not be the case with you
Method method = clazz.getMethod("methodName", String.class);
Object o = method.invoke(null, "whatever");
मामले में विधि के getDeclaredMethod()
बजाय निजी उपयोग है getMethod()
। और setAccessible(true)
विधि वस्तु पर कॉल करें ।
String methodName= "...";
String[] args = {};
Method[] methods = clazz.getMethods();
for (Method m : methods) {
if (methodName.equals(m.getName())) {
// for static methods we can use null as instance of class
m.invoke(null, new Object[] {args});
break;
}
}
public class Add {
static int add(int a, int b){
return (a+b);
}
}
उपरोक्त उदाहरण में, 'ऐड' एक स्थिर विधि है जो दो पूर्णांकों को तर्क के रूप में लेती है।
निम्नलिखित स्निपेट का उपयोग इनपुट 1 और 2 के साथ 'ऐड' पद्धति को कॉल करने के लिए किया जाता है।
Class myClass = Class.forName("Add");
Method method = myClass.getDeclaredMethod("add", int.class, int.class);
Object result = method.invoke(null, 1, 2);
संदर्भ लिंक ।