Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Why does C++ parameter scope affect function lookup within a namespace?

Today I experienced this weird behavior. I can call strangeFn without using namespace Strange first, but does not allow calling strangeFn2 Why?

namespace Strange
{
    struct X
    {
    };
    void strangeFn(X&) {}
    void strangeFn2(int) {}
}

int main()
{
    Strange::X x;
    strangeFn(x);    // GCC allows calling this function.
    strangeFn2(0);   // Error: strangeFn2 is not declared in this scope.
    return 0;
}

How does C++ compilers resolve the scope of the symbols?

share|improve this question
Maybe I used bad keywords again. :/ – Calmarius Nov 1 '11 at 10:53

marked as duplicate by Marcelo Cantos, MSalters, Praetorian, iammilind, Nawaz Nov 1 '11 at 11:07

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

This is called Argument Dependent Lookup (or Koenig Lookup)

Basically, if a symbol couldn't be resolved, the compiler will look into the namespace(s) of the argument(s).

The second function call fails, because strangeFn2 isn't visible in the current namespace, neither is it defined in the namespace of it's parameter type (int)

You can see how this works well with operator functions:

 std::complex<double> c, d;
 c += d; // wouldn't really work without ADL

or the ubiquitous iostream operators:

 std::string s("hello world");
 std::cout << s << std::endl; // Hello world would not compile without ADL...

For fun, this is what hello world would look like without ADL (and without using keyword...):

 std::string s("hello world");
 std::operator<<(std::operator<<(std::cout, s),  std::endl); // ugly!

There are shadowy corner cases with ADL and overload resolution in the presence of function templates, but I'll leave them outside the scope of the answer for now.

share|improve this answer
Cool, didn't know this affected things as simple as "Hello World"... – rubenvb Nov 1 '11 at 10:45
2  
Wow! One can never know C++ enough. – Calmarius Nov 1 '11 at 10:49
AFAIR namespaces of the arguments are always added to the search scope, not only if the name resolution fails (you can make an ambiguous call this way). – konrad.kruczynski Feb 21 '12 at 22:16

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