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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© ZhaoF 中级黑马   /  2015-1-16 18:53  /  784 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

运行程序,类GetMethod。为什么会出现图片中显示的问题?
class  GetMethod
{
        public static void main(String[] args) throws Exception
        {
                getMethodDemo();
        }
        public static void getMethodDemo() throws Exception
        {
                String className = "Person";
                Class clazz = Class.forName(className);
                String methodName = "show";
                Method method = clazz.getMethod(methodName,String.class,int.class);
        Object obj = clazz.newInstance();
                method.invoke(obj,"lisi",20);
        }
}

public class Person
{
        private String name;
        private int age;
        public Person()
        {
                super();
        }
        public Person(String name,int age)
        {
                super();
                this.name = name;
                this.age = age;
        }
        public String toString()
        {
                return name+":"+age;
        }
        public void show(String name,int age)
        {
                System.out.println("show run name="+name+",age="+age);
        }
        public static void staticshow()
        {
                System.out.println("static run name");
        }
}

QQ图片20150116185008.png (4.77 KB, 下载次数: 4)

QQ图片20150116185008.png

2 个回复

倒序浏览
没导包吧,哥们,import java.lang.reflect.*;
回复 使用道具 举报
598037136 发表于 2015-1-16 19:06
没导包吧,哥们,import java.lang.reflect.*;

知道了,谢啦
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马