Class clazz = Class.forName("cn.itcast.bean.Person");//得到Person的字节码
Method method = clazz.getDeclaredMethod("show4",int.class,String.class );//通过暴力反射得到clazz的私有方法show4,,??由于是私有的,所以你读不出来方法,应该再设置method.setAccessible(true);才能成功
Object obj = clazz.newInstance();//用clazz字节码新建一个Person实例
method.invoke(obj, 31,"hahaha");//调用show4方法 |