Interviews Questions, Algorithms, Aptitude, C Interview Program, C Theory Question, Aptitude Tricks, Test Series,

Friday 3 May 2019

Functions that cannot be overloaded in C++

In C++, the following function declarations cannot be overloaded.


1) Function declarations that differ only in the return type.

 For example, the following program fails in the compilation.



2) Member function declarations with the same name and the name parameter-type-list cannot be overloaded if any of them is a static member function declaration. 


For example, the following program fails in the compilation.


3) Parameter declarations that differ only in a pointer * versus an array [] are equivalent. That is, the array declaration is adjusted to become a pointer declaration. Only the second and subsequent array dimensions are significant in parameter types.

 For example, the following two function declarations are equivalent.

int fun(int *ptr);
int fun(int ptr[]); // redeclaration of fun(int *ptr)



4) Parameter declarations that differ only in that one is a function type and the other is a pointer to the same function type are equivalent.

void h(int ());

void h(int (*)()); // redeclaration of h(int())



5) Parameter declarations that differ only in the presence or absence of const and/or volatile are equivalent. That is, the const and volatile type-specifiers for each parameter type are ignored when determining which function is being declared, defined, or called.

 

For example, the following program fails in compilation with error “redefinition of `int f(int)’ “

Only the const and volatile type-specifiers at the outermost level of the parameter type specification are ignored in this fashion; const and volatile type-specifiers buried within a parameter type specification are significant and can be used to distinguish overloaded function declarations. In particular, for any type T, “pointer to T,” “pointer to const T,” and “pointer to volatile T” are considered distinct parameter types, as is “a reference to T,” “a reference to const T,” and “a reference to volatile T.”


 

6) Two parameter declarations that differ only in their default arguments are equivalent.

 For example, the following program fails in compilation with error “redefinition of `int f(int, int)’ “

0 comments:

Post a Comment