java的反射 demo4 反射的方法来调用函数

package com.imooc.reflect;


import java.lang.reflect.Method;

public class MethodDemo1 {

    public static void main(String[] args){

        // 获取 print(int, int) 方法
        // 1 要获取一个方法就是获取类的信息,获取类的信息


        A a1=new A();
        Class c=a1.getClass();

        /*
          2 获取方法 名称和参数列表决定
          getmethod 获取pulic 的方法
         */

        try {
            //Method m=c.getMethod("print",new Class[]{int.class,int.class});
            Method m=c.getMethod("print",int.class,int.class);

            // 方法的反射  作用是用m对象来进行方法调用
            // 以前 a1.print(10,20)
            // 方法如果没有返回值 返回null 有返回值返回具体的返回值
           // Object o = m.invoke(a1,new Object[]{10,20});

            Object o = m.invoke(a1,10,20);

            System.out.println("===============");
            Method m1=c.getMethod("print",String.class,String.class);

            o=m1.invoke(a1,"hello","world");



        } catch (Exception e) {
            e.printStackTrace();
        }



    }
}

class A{
    public void print(int a,int b){
        System.out.println(a+b);
    }

    public void print(String a, String b){
        System.out.println(a.toUpperCase()+" "+b.toLowerCase());
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值