黑马程序员技术交流社区
标题:
反射——使用method调用java.lang.String中charAt()方法
[打印本页]
作者:
bowen-xiao
时间:
2015-1-17 21:07
标题:
反射——使用method调用java.lang.String中charAt()方法
/**
* 通过反射String调用charAt方法
* @author Administrator
* @throws Exception
* @since JDK 1.6
*/
public void getMethod() throws Exception{
String str = "abcdefg";
Method method = String.class.getMethod("charAt", int.class);
System.out.println(method.invoke(str, 2));
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2