what is dynamic method dispatch ?
Answer Posted / penchala
Dynamic dispatch is a mechanism by which a call to
Overridden function is resolved at runtime rather than at
Compile time , and this is how Java implements Run time
Polymorphism.
| Is This Answer Correct ? | 87 Yes | 5 No |
Post New Answer View All Answers
Explain what access modifiers can be used for methods?
What are the differences between string and stringbuffer?
What is the difference between form & report?
What is formatted output?
What is remote method invocation (rmi)?
When do you call copy constructor?
Why is string class considered immutable?
What is the difference between jdk, jre, and jvm?
What is * argv?
What are the advantages of packages in java?
Explain java code for recursive solution's base case?
What does it mean to flush a file?
What is Hierarchy of exception?
Can you use abstract and final both with a method?
which one is more efficient int x; 1. if(x==null) 2.if(null==x) state which one either 1 or 2?