difference between the run time polymorphism and compile
time poly morphism and about virtual function.
Answer Posted / sangita pradhan
Compile time polymorphism(Static polymorphism) means
basically those language structure which will cause the
compiler to produce code at the compile-time. That is, the
compiler is well aware that what code is to be generated at
the compile-time itself: Ex: overloading of operators,
functions.
Run time Polymorphism(Dynamic Polymorphism)means that the
compiler is unaware what code is to be generated so it binds
the possible code and let the program decide it at the
run-time itself.Ex: the virtualness of a class member or the
entire class itself.
| Is This Answer Correct ? | 79 Yes | 7 No |
Post New Answer View All Answers
What is dynamic array in excel?
What is stable sorting?
What is the minimum number of queues that can be used to implement a priority queue?
Is arraylist fail fast?
What is difference between list and array list?
What are the best data structure courses for gate preparation?
What are the categories of avl rotations?
What data type is array?
Is quicksort a stable sorting algorithm?
How do you reference all the elements in a one-dimension array?
Define probing?
How can I learn data structures?
Explain the Queue
Define union-by-weight?
Is pointer a variable?