import java.lang.reflect.*;
public class ReflectTest4 {
public static void main(String[] args) throws Exception {
String s1 =new String("cds");
Method CharAt =String.class.getMethod("charAt", int.class);
System.out.println(CharAt.invoke(s1,1));
}
}
上面这个例子的反射方法是“chatAt(int i)”;
如果,我说如果,参数类型变了。变成“charAt(String str,int... i)”;
那这个语句我应该怎么写啊,就和上面的模式一样。
|
|