• 反射认识_04_反射调用类方法Method


    包1:

    package ReflectionMethod;
    
    public class ReflectionMethod {
    	String str1="str1";
    	
    	public void outStr1(){
    		System.out.println("输出第一个字符串:"+str1);
    	}
    	public void outStr2(String str2){
    		System.out.println("输出第二个字符串:"+str2);
    	}
    	public void outStr3(String str3,String str4){
    		System.out.println("输出第三个字符串:"+str3);
    		System.out.println("输出第四个字符串:"+str4);
    	}
    }
    

      

    包2:

    package ReflectionMethod;
    
    import java.lang.reflect.Method;
    
    public class ReflectionAchieve {
    
    	public static void main(String[] args) throws Exception {
    		ReflectionMethod rp=new ReflectionMethod();
    		useMethod(rp); 
    	}
    	
    	public static void useMethod(Object obj) throws Exception{
    		/*调用方法1,不带参数*/
    		Method out1=obj.getClass().getMethod("outStr1");//通过对象获得类,通过类获得类方法
    		out1.invoke(obj);//传入对象,并使用方法,如果是静态方法,可以传入null
    		/*调用方法2,带1个参数*/
    		Method out2=obj.getClass().getMethod("outStr2",String.class);//通过对象获得类,传入方法参数类型,通过类获得类方法
    		out2.invoke(obj,"str2");//传入对象,传入变量,并使用方法
    		/*调用方法3,带多个参数*/
    		Method out3=obj.getClass().getMethod("outStr3",String.class,String.class);//通过对象获得类,传入多个参数类型,通过类获得类方法
    		out3.invoke(obj,"str3","str4");//传入对象,传入多个变量,-使用方法
    	}
    }
    

      

  • 相关阅读:
    2. jvm-sandbox之结构和状态
    1. jvm-sandbox之小试牛刀
    redux中间件来执行异步操作
    redux
    vue简单插件
    VUE搭建
    用element-ui进行文件的上传
    完整的node脚手架搭建服务
    使用node来搭建简单的后台业务
    解决vuex数据页面刷新后初始化问题
  • 原文地址:https://www.cnblogs.com/zjsy/p/4148873.html
Copyright © 2020-2023  润新知