Method method = hello.getDeclaredMethod("privatePrint", null); System.out.println(method); method.setAccessible(true); ##加这个 method.invoke(hello.newInstance(), null);
privatesPrint()方法是私有的 改下吧