Login
Remember
Register
Ask a Question
What is the difference between compile-time polymorphism and runtime polymorphism?
0
votes
asked
Apr 30, 2021
in
JAVA
by
rajeshsharma
What is the difference between compile-time polymorphism and runtime polymorphism?
#polymophism
un-time-polymorphism
Java-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Apr 30, 2021
by
rajeshsharma
There are the following differences between compile-time polymorphism and runtime polymorphism.
SN
compile-time polymorphism
Runtime polymorphism
1
In compile-time polymorphism, call to a method is resolved at compile-time.
In runtime polymorphism, call to an overridden method is resolved at runtime.
2
It is also known as static binding, early binding, or overloading.
It is also known as dynamic binding, late binding, overriding, or dynamic method dispatch.
3
Overloading is a way to achieve compile-time polymorphism in which, we can define multiple methods or constructors with different signatures.
Overriding is a way to achieve runtime polymorphism in which, we can redefine some particular method or variable in the derived class. By using overriding, we can give some specific implementation to the base class properties in the derived class.
4
It provides fast execution because the type of an object is determined at compile-time.
It provides slower execution as compare to compile-time because the type of an object is determined at run-time.
5
Compile-time polymorphism provides less flexibility because all the things are resolved at compile-time.
Run-time polymorphism provides more flexibility because all the things are resolved at runtime.
...