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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© Rockray 高级黑马   /  2014-4-1 13:10  /  1117 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 Rockray 于 2014-4-1 13:39 编辑

请看下面代码:
  1. import java.lang.reflect.*;

  2. public class Test5{
  3.         public static void main(String[] args) throws Exception{
  4.                 Constructor cons = Person.class.getConstructor();
  5.         }
  6. }

  7. class Person {
  8.         private String name;
  9.         private int age;
  10.         
  11.         Person(){
  12.         }
  13.         
  14.         Person(String name, int age){
  15.                 this.name = name;
  16.                 this.age = age;
  17.         }
  18.         
  19.         public String getName() {
  20.                 return name;
  21.         }
  22.         public void setName(String name) {
  23.                 this.name = name;
  24.         }
  25.         public int getAge() {
  26.                 return age;
  27.         }
  28.         public void setAge(int age) {
  29.                 this.age = age;
  30.         }
  31. }
复制代码

编译通过,运行时会抛出 NoSuchMethodException异常


请问怎么解决啊?

4 个回复

倒序浏览
这么说吧 直接getConstructor  只能对有public 修饰的
你可以换成 getDeclaredConstructor , 这是无视修饰符,private都可以
回复 使用道具 举报
已经解决了
回复 使用道具 举报
osully 发表于 2014-4-1 13:32
这么说吧 直接getConstructor  只能对有public 修饰的
你可以换成 getDeclaredConstructor , 这是无视修饰 ...

对,正解,嘿嘿
多谢!
回复 使用道具 举报
你的person类不是public修饰的,getConstructor只能得到public修饰的构造方法。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马