zoukankan      html  css  js  c++  java
  • (转)Java.lang.reflect.Method invoke方法 实例

    背景:今天在项目中用到Method 的invoke方法,但是并不理解,查完才知道,原来如此!

    import java.lang.reflect.Method;  
      
    /** 
     * Java.lang.reflect.Method invoke方法 实例 
     * 程序中配置文件中有对实体对象的get,set方法的描述,通过应用invoke()方法调用实体对象的method方法 return 
     * m_oGetter.invoke(oSrc, null); oSrc为实体对象,Method m_oGetter 
     * 这里的m_oGetter是对应于在代理实例(oSrc)上调用的接口方法的 Method 实例,下面参考示例代码 
     * 
     
     */  
      
    class Employee {  
        // 定义一个员工类  
        public Employee() {  
            age = 0;  
            name = null;  
        }  
      
        // 将要被调用的方法  
        public void setAge(int a) {  
            age = a;  
        }  
      
        // 将要被调用的方法  
        public int getAge() {  
            return age;  
        }  
      
        // 将要被调用的方法  
        public void printName(String n) {  
            name = n;  
            System.out.println("The Employee Name is: " + name);  
        }  
      
        private int age;  
        private String name;  
    }  
      
    public class InvokeMethods {  
      
        public static void main(String[] args) {  
      
            Employee emp = new Employee();  
            Class<?> cl = emp.getClass();  
            // /getClass获得emp对象所属的类型的对象,Class就是类的类  
            // /Class是专门用来描述类的类,比如描述某个类有那些字段,  
            // /方法,构造器等等!  
            try {  
      
                // /getMethod方法第一个参数指定一个需要调用的方法名称  
                // /这里是Employee类的setAge方法,第二个参数是需要调用  
                // 方法的参数类型列表,是参数类型!如无参数可以指定null  
                // /该方法返回一个方法对象  
                Method sAge = cl.getMethod("setAge", new Class[] { int.class });  
                Method gAge = cl.getMethod("getAge", null);  
                Method pName = cl.getMethod("printName",  
                        new Class[] { String.class });  
                /** *使用invoke调用指定的方法 */  
                Object[] args1 = { new Integer(25) };  
                // 参数列表  
                // emp为隐式参数该方法不是静态方法必须指定  
                sAge.invoke(emp, args1);  
                Integer AGE = (Integer) gAge.invoke(emp, null);  
                int age = AGE.intValue();  
                System.out.println("The Employee Age is: " + age);  
                Object[] args3 = { new String("Jack") };  
                pName.invoke(emp, args3);  
            } catch (Exception e) {  
                e.printStackTrace();  
            }  
            System.exit(0);  
        }  
      
    }  

    运行结果:

    The Employee Age is: 25
    The Employee Name is: Jack

  • 相关阅读:
    google PR值突然调整,貌似出什么问题了
    【转自译言】在线劝说:7种说服人们网络购买的方法
    马化腾关于产品设计与用户体验的培训
    北京站售票人员倒票视频
    大型网站架构不得不考虑的10个问题
    在谈电子商务名词解释
    GridView
    CheckBoxList
    ShoppingCart
    MongoDB数据库简介及安装
  • 原文地址:https://www.cnblogs.com/lixuwu/p/7055041.html
Copyright © 2011-2022 走看看