Why does the function arguments are called as "signatures"?
Answer Posted / padma
In the dynamic polymorphism the control has to distinguish
each function from other functions which has the same
function name.With the help of each method or function
arguments the control executes the function call,whenever it
is made.Each function call will be executed based on the
arguments passed.This is the reason, each function name
including the parameters or arguments has it own identity,
and this identification for the function is called
signature.Based on the signature, the control jumps from one
function to another in run time of the program.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is serialization? How do we implement serialization actually?
What is abstract method?
What is diamond inheritance problem? How java 8 solves this problem?
What is constructor and virtual function? Can we call virtual funciton in a constructor?
What is the need of multiple inheritance?
How to achieve data abstraction?
What is difference between static and non-static fields of a class?
Differentiate between overloading and overriding.
What is the syntax of object oriented method call?
How to define an interface?
What is the use of interface?
What is the best tool for modeling and ORM framework
What is the main difference between a class and an object?
Can you call the base class method without creating an instance?
Which OOPS concept is used as a reuse mechanism?