हिंदी
तमिलनाडु बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान कक्षा ११

How does a compiler decide as to which function should be invoked when there are many functions? Give an example. - Computer Science

Advertisements
Advertisements

प्रश्न

How does a compiler decide as to which function should be invoked when there are many functions? Give an example.

संक्षेप में उत्तर

उत्तर

When you call an overloaded function (when there are many functions with the same name), the compiler determines the most appropriate definition to use by comparing the argument types used to call the function with the parameter types specified in the definitions. The process of selecting the most appropriate overloaded function or operator is called overload resolution.

Example:
#include using namespace std; void print (int i)
{

cout<< “It is integer” <<i<< endl;

}

void print (string c)

{

cout<< “It is string”<< c << endl;

}
int main ()
{

print (10);
print (“Good”);
return 0;

}
Output:

It is integer 10
It is string Good

shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 15: Polymorphism - Evaluation - Section - C [पृष्ठ २५७]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 11 TN Board
अध्याय 15 Polymorphism
Evaluation - Section - C | Q 2. | पृष्ठ २५७
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×