黑马程序员技术交流社区

标题: 反射——使用method调用java.lang.String中charAt()方法 [打印本页]

作者: bowen-xiao    时间: 2015-1-17 21:07
标题: 反射——使用method调用java.lang.String中charAt()方法
  1.         /**
  2.          * 通过反射String调用charAt方法
  3.          * @author Administrator
  4.          * @throws Exception
  5.          * @since JDK 1.6
  6.          */
  7.         public  void getMethod() throws Exception{
  8.                 String str = "abcdefg";
  9.                 Method method = String.class.getMethod("charAt", int.class);
  10.                 System.out.println(method.invoke(str, 2));
  11.         }
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2