Re: Rationale behind constructor call chain... ( and comparison with
C++)
Tor Iver Wilhelmsen wrote:
"A.B." <ab2@mytrashmail.com> writes:
( In C++ the behavior is always to call the function defined in A when
called within the A constructor, even if the overloaded function is B
is virtual. )
That's because C++ is an ugly hack on top of C. Since C does not "see"
that B::foo() is a candidate for A::foo() until B is compiled and has
its vptr table filled, A's constructor can only call the method it
sees, which is A::foo().
I don't quite follow. Any function in A that calls a virtual function on
this (and it isn't in the constructor) will run the overridden version.
A possible explanation is that the C++ -> C bindings used a single
function for the constructor, whether it was called from a subclass
constructor or not. The constructor needs to set the vtable pointer. If
it sets the pointer before calling the base class constructor, then the
base class will just overwrite it. Therefore, the vtable pointer needs
to be written after the base class constructor is invoked, and the
behaviour follows.
In JVM bytecode, creating an instance of a class takes two instructions:
new to allocate and invokespecial to call the most derived class'
constructor. On pre-1.6 JVMs, you could throw an exception before
calling the super constructor, and the finalizer would still run with a
full set of 'virtual' methods (From 1.5 the Object construct must exit
normally in order for the finalizer to run).
I don't recall Stroustrup's The Design and Evolution of C++ mentioning
this issue.
C++ programs run on platforms that lack the virtual call instruction
of the Java VM.
What virtual call instruction? Can you name some platforms?
Tom Hawtin