问题1:
Exception in thread “main” java.lang.NoSuchMethodException: com.bjsxt. why.Dog.(java.lang.String, java.lang.String)
原因:getConstructor只能获取public方法,无法获取其他修饰符修饰的方法。
解决:调用getDeclaredConstructor()解决,可获取非public修饰的构造方法
问题2:
Exception in thread “main” java.lang.IllegalAccessException: Class com. bjsxt. TestConstructor3 can not access a member of class com.bjsxt.Dog with modifiers "
原因:可以获取非public修饰的构造方法,不等于可以运行非public修饰的构造方法,受到了封装性的限制
解决:调用con.setAccessible(true);方法,可以突破封装性的限制。