码迷,mamicode.com
首页 > 其他好文 > 详细

通过反射调用类中的方法

时间:2014-09-03 19:33:47      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   java   ar   for   on   c   new   

 

一 ,调用无参方法:

import java.lang.reflect.Method;

public class InvokeSayJapanDemo {
public static void main(String[] args) {
    Class<?> c1=null;
    try {
        c1=Class.forName(PersonZ.class.getName());
    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    }
    try {
        Method met=c1.getMethod("sayJapan");
        met.invoke(c1.newInstance());
    } catch (Exception e) {
        e.printStackTrace();
    }
}
}

 

二,调用有参方法:

import java.lang.reflect.Method;

public class InvokeSayHelloDemo {
    public static void main(String[] args) {
        Class<?> c1 = null;
        try {
            c1 = Class.forName(PersonZ.class.getName());
        } catch (ClassNotFoundException e) {
            // TODO Auto-generated catch bloc
            e.printStackTrace();
        }
        try {
            Method method = c1.getMethod("sayHello", String.class, int.class);
            String rv = null;
            rv = (String) method.invoke(c1.newInstance(), "Von", 32);
            System.out.println(rv);
        } catch (Exception e) {
            e.printStackTrace();
        }

    }
}

通过反射调用类中的方法

标签:style   color   io   java   ar   for   on   c   new   

原文地址:http://www.cnblogs.com/vonk/p/3954242.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!