top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is dynamic or run time polymorphism?

+1 vote
237 views
What is dynamic or run time polymorphism?
posted Jun 2, 2014 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Dynamic or Run time polymorphism is also known as method overriding in which call to an overridden function is resolved during run time, not at the compile time. It means having two or more methods with the same name,same signature but with different implementation.

answer Jun 2, 2014 by Vrije Mani Upadhyay
Similar Questions
+2 votes

For an example:
I have a dll file liba.dll,
While compiling i am giving the path of the library file. It is compiling properly.

Now i have to load this binary/.exe file and DLL file to other system/device,
Then what about the DLL file?
How our program gets to know the path of DLL during run time?
I mean how DLL file will be linked?

+2 votes

If yes, then what are all possible scenarios in the network which causes to do so ?

+2 votes

Let's say I have an exe-file (for example computer game) and need to forbid to run it until certain date or time during the day. Any 'manipulations' with file are allowed.

Could you, please, offer me a simple way of how to encode/decode such a file mostly in C or C++?

...