反射获取构造方法并使用练习2

反射获取构造方法并使用练习2_第1张图片

public class ReflectDemo03 {
    public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
        //获取Class对象
        Class c = Class.forName("com.reflect_02.Student");

        Constructor con = c.getDeclaredConstructor(String.class);
        //取消访问检查
        con.setAccessible(true);
        Object obj = con.newInstance("林青霞");
        System.out.println(obj);
    }
}

运行结果:

反射获取构造方法并使用练习2_第2张图片

你可能感兴趣的:(反射获取构造方法并使用练习2)