I know that when using:
A a = new A();
It assigns a space in the heap,and then calls the constructor,at last returns the reference. But I am confused about that, if I call a constructor in another one, or when the child constructor calls it's parent's. Will this two ways create series of instances? Or one "new" for "one instance"?