黑马程序员技术交流社区

标题: 反射得到内部类的私有方法出问题 [打印本页]

作者: 李兴    时间: 2014-1-3 20:24
标题: 反射得到内部类的私有方法出问题
本帖最后由 李兴 于 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. }
复制代码

该怎样改

作者: 松毛    时间: 2014-1-3 21:07
构造方法需要加上访问权限。
  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. }
复制代码

作者: 李兴    时间: 2014-1-3 21:26
松毛 发表于 2014-1-3 21:07
构造方法需要加上访问权限。

谢谢你  运行通过了  我得注意细节了




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2