newInstance & constructor of base class
807569May 15 2006 — edited May 15 2006When I instantiate a sub class directly (using new), the code in the constructor method of both base and sub classes run.
When I instantiate using java.lang.reflect.Constructor.newInstance, only the sub class's constructor method is invoked. Is there a way to force running the constructor method of the base class as well?
Thanks & Regards.