如何重新创建方法调用?当我得到的只是方法列表,由 获得getDeclaredMethods()
,并转换为一个HashMap<String,Method>
及其参数类的列表,由 获得getParameterTypes()
。
假设我从用户那里得到一个字符串,我想调用它:
"print(3,"Hello World!",true,2.4f)"
该方法print(int,String,boolean,float)
是 getMethods() 数组的一部分。我很难弄清楚如何编写调用。到目前为止,这是我得到的:
private static final Pattern functionCall = Pattern.compile(String.format("^%s\\(%s?\\)$", "(\\w+)", "(.*)"));
if( (m = functionCall.matcher(line)).find() ) {
String function = m.group(1); // in this example = "print"
String arguments = m.group(2); // in this example = "3,\\"Hello World!\\",true,2.4f"
if( methods.containsKey(function) ) {
Method method = methods.get(function);
Class<?>[] paramsExpected = method.getParameterTypes();
String [] paramsActual = arguments.split(",");
if( paramsExpected.length != paramsActual.length ) {
throw new IllegalArgumentException(function + ": bad number of arguments");
}
for( Class<?> param: paramsExpected) {
???????
}
method.invoke(context, ??????);
明确地说,我事先不知道用户将输入什么字符串,我必须对照可用的方法及其参数检查它,如果找到它,则必须使用提供的参数调用它用户。