在反射中,这里的methodCharAt是Method类的对象 , 参数"charAt"表示获得Method类中的charAt方法,
int.class 表示charAt方法中的参数,此时和str对象还没有建立任何关系,因为获得的charAt
方法可以属于任意String对象的。
2 methodCharAt.invoke(str, 1) 意思是将反射中的Method对象 和实际String的对象联系起来
此时,把str对象当做参数,传递给反射中的方法对象中的invoke方法
即就是Method方法中的charAt方法所属str对象的,而1是此cahrAt
方法的参数。
例2 Person p = new Person(3,5); 假设3代表Person的类变量 x,5代表y,
1 Field fieldY = p.getClass().getField("y"); 表示获得File类中的的y变量,此时也没有和Person的p对象建立任何关系
2 int y = fieldY.get(p) 表示声明Filed类中的变量y是属于Person的对象p的
即让实际对象p的变量y 和反射中的Filed对象fileY 建立联系。