本帖最后由 赵亚威 于 2013-4-5 12:59 编辑
class ReflectTest{
public static void main(String[] args)throws Exception{
String str= "itcastheima.com" ;
str.charAt(0);
Method method=String.class.getMethod("charAt", int.class);
System.out.println(method.invoke(str,new Object[]{1} ));//为什么不直接赋予一个整数呢?
//这不很麻烦嘛
}
} |