A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 游呤人 中级黑马   /  2015-7-16 01:41  /  283 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

Method 提供关于类或接口上单独某个方法(以及如何访问该方法)的信息。所反映的方法可能是类方法或实例方法(包括抽象方法)。


步骤和前面一样,先获得Class
方法有

Method getMethod(String name, Class<?>... parameterTypes)
          返回一个 Method 对象,它反映此 Class 对象所表示的类或接口的指定公共成员方法。
Method[] getMethods()
          返回一个包含某些 Method 对象的数组,这些对象反映此 Class 对象所表示的类或接口(包括那些由该类或接口声明的以及从超类和超接口继承的那些的类或接口)的公共 member 方法。




Method getDeclaredMethod(String name, Class<?>... parameterTypes)
          返回一个 Method 对象,该对象反映此 Class 对象所表示的类或接口的指定已声明方法。
Method[] getDeclaredMethods()
          返回 Method 对象的一个数组,这些对象反映此 Class 对象表示的类或接口声明的所有方法,包括公共、保护、默认(包)访问和私有方法,但不包括继承的方法。



  1. public class MethdeDome {
  2.         public static void main(String[] args) throws Exception{
  3.                         Class  clazz=Class.forName("com.refect.Student");
  4.                         Constructor con=clazz.getDeclaredConstructor();
  5.                         con.setAccessible(true);
  6.                         Object ob= con.newInstance();
  7.                         System.out.println(ob);
  8.                         /*Method[] me=clazz.getDeclaredMethods();
  9.                         for (Method method : me) {
  10.                                 System.out.println(method);
  11.                         }*/
  12.                         System.out.println("---------------------><_____________________><-----------------------");
  13.                         Method setAge =clazz.getDeclaredMethod("setAge", int.class);
  14.                         System.out.println(setAge);
  15.                         setAge.invoke(ob, 10);
  16.                         System.out.println(ob);
  17.                         Method hop=clazz.getDeclaredMethod("hop", null);
  18.                         hop.setAccessible(true);
  19.                         hop.invoke(ob, null);
  20.                        
  21.                        
  22.         }
  23. }
复制代码






1 个回复

倒序浏览
学习了……
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马