Non mumber function can be delcared multiple times while member function can only be declared once? Is this right ? My example seems saying yes.

But Why ?

class Base{
public:
    int foo(int i);
    //int foo(int i=10); //error C2535: 'void Base::foo(int)' : member function already defined or declared
};

//but it seems ok to declare it multiple times
int foo(int i);
int foo(int i=10);

int foo(int i)
{
    return i;
}

int main (void)
{
    int i = foo();//i is 10 
}
link|improve this question

How does the linker deal with this? – Captain Giraffe Sep 22 '11 at 18:22
@Captain Giraffe: A linker matches up actual calls with definitions; it doesn't depend on declarations. The compiler has earlier used those declarations to resolve the calls. – MSalters Sep 23 '11 at 7:55
@all, thanks for all the good answers/comments/links, this matter is now clear ! – Gob00st Sep 23 '11 at 13:49
feedback

3 Answers

up vote 6 down vote accepted

From the Standard (2003), §8.3.6/4 says,

For non-template functions, default arguments can be added in later declarations of a function in the same scope.

Example from the Standard itself:

void f(int, int);
void f(int, int = 7);

The second declaration adds default value!

Also see §8.3.6/6.

And an interesting (and somewhat related) topic:

And §9.3/2,

Except for member function definitions that appear outside of a class definition, and except for explicit specializations of member functions of class templates and member function templates (14.7) appearing outside of the class definition, a member function shall not be redeclared.

Hope that helps.

link|improve this answer
Except that there are no templates in his code. – James Kanze Sep 22 '11 at 17:24
Then isn't that perfect, @James? The quoted part of the standard says it applies to non-template functions. – Rob Kennedy Sep 22 '11 at 17:37
@UncleBens: Thanks. That quote is very precise. I added it to my answer. And yeah, after re-reading the question, I felt that the answer seems incomplete and I was looking for another quote from the spec. You did it before me. – Nawaz Sep 22 '11 at 17:55
This seems odd to me, is it the linker that adds default arguments in these cases? – Captain Giraffe Sep 22 '11 at 18:24
1  
@CaptainGiraffe: No. It's compiler itself. See this also : stackoverflow.com/questions/5637679/… – Nawaz Sep 22 '11 at 18:27
show 6 more comments
feedback

You get the same result with this simplified version:

int foo() ;
int foo() ; // OK -- extern functions may be declared more than once
class C {
  int foo() ;
  int foo() ; // Error -- member function may not be declared more than once
} ;

Perhaps the reason is historical -- lots of C code used redeclaration of extern functions, so they had to be allowed.

link|improve this answer
feedback

It certainity works - but I think it is bad practice.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.