How is method overriding implemented in Java? In C++ we have the concept of vtable.. how is this implemented internally in Java?
|
1
|
|||||||
|
|
|
To answer the question, which is specifically how overriding is implemented in the virtual machine, there's a write up available in Programming for the Java Virtual Machine (Google Books link). The VM will look for an appropriate method definition in the referenced class, and then work its way up through the inheritance stack. Obviously at some stage various optimisations will apply. See here for a description of the relevant bytecode instruction
As gustafc has highlighted below, various optimisations can apply, and no doubt the JIT will introduce further. |
|||
|
|
|
Maybe this comparison of C++ Vtables and Java method invocation tables is of interest. |
||
|
|
|
|
As long as the function (method) you wish to override is not marked as |
||||
|
