下面的对象创建方法中哪些会调用构造方法 ()?
try { obj = desc.isInstantiable() ? desc.newInstance() : null; } catch (Exception ex) { throw (IOException) new InvalidClassException( desc.forClass().getName(), "unable to create instance").initCause(ex); }
obj = desc.isInstantiable() ? desc.newInstance() : null; // 判断她是否可实例化 可以的话 那么通过反射实例化他 那么也就调用到了无参构造函数