本帖最后由 张森 于 2013-1-29 10:31 编辑
刚刚看反射,有个疑问,希望大家帮帮忙。
当一个类的构造方法是private的时候,怎么利用反射获取呢。
Constructor mm = Math.class.getDeclaredConstructor();
Math math = (Math) mm.newInstance(null);
System.out.println(math.max(4, 5));
java.lang.IllegalAccessException: Class StringDemo.Demo can not access a member of class java.lang.Math with modifiers "private"
|
|