Re: abstract classes and dynamic binding
Peter Duniho wrote:
I'm aware that all that information is available, and even said so in my
reply.
I think what I was focusing on was this:
Peter Duniho quoting conrad:
>> The type of objects is stored with
>> them, and can be accessed at run-time.
>> So it can be used by the JVM at run-time.>
>
> That's all true, but isn't actually how "the JVM knows that obj1's
> getArea method is the one implemented by the Circle class".
"isn't actually how "the JVM [implements polymorphism] ... "
It's the "isn't" that was bugging me, because I think it is. Maybe you
meant "isn't the whole story" or something to that effect.
And that is how a JVM does it's virtual dispatch.
"What" is "how"?
Right, it's hidden, and implemented differently depending on what the
JVM thinks is applicable. We don't know (unlike C++ where I think it's
more baked into the spec) and that's a good thing.
Do you really think there's only one way that all JVMs implement
polymorphism? I assume all JVMs are different, and indeed the
implementation might change with each version even from the same vendor.
Knowing the details of one implementation is largely of academic
interest, imo.
I try to write good, clear Java and let the compiler and JVM worry about
the rest.....
I don't think a JVM uses virtual method tables. I guess it might,
post JIT compilation, but it derives that info from the class types,
so ultimately I think Stefan's answer is right on.
I can't imagine _not_ using v-tables for the JIT-ed code. Looking
As Tom mentions, the JVM has a few more tricks than v-tables. Guessing,
or just knowing, a reference's runtime type, is one. The JVM will
completely eliminate, or at least abbreviate, v-table dispatch in those
cases. That's specifically what I was thinking of when I say that post
JIT the compiler "may" use v-tables. It may use some other method too.