我想只從它的名字,我使用的代碼知道該方法的返回類型,但它並沒有爲我工作(它總是返回null):我怎樣才能知道只有它的名字的方法返回類型?
public Object getType(String key) throws Exception {
Object returnType = null;
String name = key;
Method[] methods = name.getClass().getMethods();
for(int i =0; i < methods.length ; i++){
if(key.equals(methods[i])){
returnType = methods[i].getReturnType();
}
}
return returnType;
}
笑,搜索的字符串類是一個大白癡:d –