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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 李兴 中级黑马   /  2014-1-3 20:24  /  1139 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 李兴 于 2014-1-4 18:12 编辑

通过反射得到内部类的私有方法,编译失败,求解
  1. import java.lang.reflect.Constructor;
  2. import java.lang.reflect.Method;


  3. class DemoA
  4. {
  5.         public static void main(String[] args) throws Exception
  6.         {
  7.                 Class classB = DemoA.DemoB.class;
  8.                 Constructor constructor = classB.getDeclaredConstructor(null);//这行报错
  9.                 DemoB db = (DemoB) constructor.newInstance(null);
  10.                 Method method = classB.getDeclaredMethod("sop", null);
  11.                 method.setAccessible(true);
  12.                 method.invoke(db, null);
  13.         }
  14.         
  15.         class DemoB
  16.         {
  17.                 private DemoB(){}
  18.                 private void sop(){
  19.                         System.out.println("DemoB");
  20.                 }
  21.         }
  22. }
复制代码

该怎样改

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

2 个回复

倒序浏览
构造方法需要加上访问权限。
  1. import java.lang.reflect.Constructor;
  2. import java.lang.reflect.Method;


  3. public class DemoA
  4. {
  5.         public static void main(String[] args) throws Exception
  6.         {
  7.                 Class classB = DemoB.class;
  8.                 Constructor constructor = classB.getDeclaredConstructor();//这行报错
  9.                 constructor.setAccessible(true);    //在这里加上访问权限
  10.                 DemoB db = (DemoB)constructor.newInstance();
  11.                 Method method = classB.getDeclaredMethod("sop", null);
  12.                 method.setAccessible(true);
  13.                 method.invoke(db, null);
  14.         }
  15.         
  16.       
  17. }

  18. class DemoB
  19. {
  20.         private DemoB(){}
  21.         private void sop(){
  22.                 System.out.println("DemoB");
  23.         }
  24. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

回复 使用道具 举报
松毛 发表于 2014-1-3 21:07
构造方法需要加上访问权限。

谢谢你  运行通过了  我得注意细节了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马