473,397 Members | 1,950 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

Help with Koenig Lookup

REH
I'm a little confused about argument dependent lookup. Exactly when does
this apply? Specifically, I was hoping to use it to access enumeration
constants. For example:

namespace Flags {
enum flag_type {F1, F2, F3};
}

void foo(Flags::flag_type f)
{
}

int main()
{
foo(F1);
}

All my compilers fail to find "F1" (and they are probably correct). I
thought that Koenig lookup searched for names in the namespaces of the
arguments' types. Now that I think about it, does it look in the namespaces
for the formal or actual arguments?

Thanks.
Jul 22 '05 #1
11 1665
REH wrote:
I'm a little confused about argument dependent lookup. Exactly when does
this apply? Specifically, I was hoping to use it to access enumeration
constants. For example:

namespace Flags {
enum flag_type {F1, F2, F3};
}

void foo(Flags::flag_type f)
{
}

int main()
{
foo(F1);
This has nothing to do with argument-dependent lookup. 'F1' is simply
not present in the scope of the 'main' function.
}

All my compilers fail to find "F1" (and they are probably correct). I
thought that Koenig lookup searched for names in the namespaces of the
arguments' types.
Yes. The namespaces of the arguments are searched for the function names.
So, if you do

namespace Flags {
enum flag_type {F1, F2, F3};
void foo(Flags::flag_type f)
{
}
} // namespace

int main()
{
foo(Flags::F1); // no qualification for 'foo'
}

The compiler will resolve 'foo' as 'Flags::foo' because the argument is
from the Flags namespace.
Now that I think about it, does it look in the namespaces
for the formal or actual arguments?


It looks in the namespaces of the _types_ (types are determined from the
actual arguments of course). IOW, if you did

Flags::flag_type someflag;
foo(someflag);

it would still resolve 'foo' as 'Flags::foo' because the _type_ of the
'someflag' argument is from 'Flags' namespace.

V
Jul 22 '05 #2
REH wrote:
I'm a little confused about argument dependent lookup. Exactly when does
this apply? Specifically, I was hoping to use it to access enumeration
constants. For example:

namespace Flags {
enum flag_type {F1, F2, F3};
}

void foo(Flags::flag_type f)
{
}

int main()
{
foo(Flags::F1);
}



--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #3
REH

"Victor Bazarov" <v.********@comAcast.net> wrote in message
news:EO*******************@newsread1.mlpsca01.us.t o.verio.net...
Yes. The namespaces of the arguments are searched for the function names.
So, if you do

namespace Flags {
enum flag_type {F1, F2, F3};
void foo(Flags::flag_type f)
{
}
} // namespace

int main()
{
foo(Flags::F1); // no qualification for 'foo'
}

The compiler will resolve 'foo' as 'Flags::foo' because the argument is
from the Flags namespace.

Thank you. That's clear. I like to keep my enums in their own namespace,
but always typing "namespace::constant" gets tedious. I had hoped to use
Koenig Lookup to avoid that, but from what you are telling me I can't (other
than with "using").

Regards.
Jul 22 '05 #4
REH wrote:
Thank you. That's clear. I like to keep my enums in their own namespace,
but always typing "namespace::constant" gets tedious. I had hoped to use
Koenig Lookup to avoid that, but from what you are telling me I can't (other
than with "using").


All *names* specified in a namespace must be used with their namespace
name (either explicit namespace::name style or via using statements).


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #5
Ioannis Vranos wrote:
REH wrote:
Thank you. That's clear. I like to keep my enums in their own
namespace,
but always typing "namespace::constant" gets tedious. I had hoped to
use
Koenig Lookup to avoid that, but from what you are telling me I can't
(other
than with "using").

All *names* specified in a namespace must be used with their namespace
name (either explicit namespace::name style or via using statements).


No, that's incorrect. See my example:

namespace NS {
class foo;
void bar(foo*);
}

int main() {
NS::foo* pfoo = 0;
bar(pfoo);
}

I happily used 'bar' without a namespace. That's what ADL is all about.

V
Jul 22 '05 #6
REH

"Victor Bazarov" <v.********@comAcast.net> wrote in message
news:bq*******************@newsread1.mlpsca01.us.t o.verio.net...
All *names* specified in a namespace must be used with their namespace
name (either explicit namespace::name style or via using statements).


No, that's incorrect. See my example:

namespace NS {
class foo;
void bar(foo*);
}

int main() {
NS::foo* pfoo = 0;
bar(pfoo);
}

I happily used 'bar' without a namespace. That's what ADL is all about.

V


But, I take it that there is no way to do this with non-function names?

Jul 22 '05 #7
REH wrote:
"Victor Bazarov" <v.********@comAcast.net> wrote in message
news:bq*******************@newsread1.mlpsca01.us.t o.verio.net...
All *names* specified in a namespace must be used with their namespace
name (either explicit namespace::name style or via using statements).


No, that's incorrect. See my example:

namespace NS {
class foo;
void bar(foo*);
}

int main() {
NS::foo* pfoo = 0;
bar(pfoo);
}

I happily used 'bar' without a namespace. That's what ADL is all about.

V

But, I take it that there is no way to do this with non-function names?


Right. _Argument_-dependent lookup applies only to function names. The
only other thing that has arguments in C++ is templates. But ADL doesn't
apply to them:

namespace NS {
enum foo { f };
template<foo f> class bar {};
}

int main() {
bar<NS::f> barf; // line 7
}

Here, on line 7, 'bar' is not going to be looked up in 'NS' even though
its _argument_ is fully qualified (and found in 'NS' namespace).

V
Jul 22 '05 #8
Victor Bazarov wrote:
No, that's incorrect. See my example:

namespace NS {
class foo;
void bar(foo*);
}

int main() {
NS::foo* pfoo = 0;
bar(pfoo);
}

I happily used 'bar' without a namespace. That's what ADL is all about.

Where is the function definition?


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #9
Ioannis Vranos wrote:
Victor Bazarov wrote:
No, that's incorrect. See my example:

namespace NS {
class foo;
void bar(foo*);
}

int main() {
NS::foo* pfoo = 0;
bar(pfoo);
}

I happily used 'bar' without a namespace. That's what ADL is all about.


Where is the function definition?

Apart from missing function definition, this is the case of ADL (for
example bar(0); would not compile).


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #10
Ioannis Vranos wrote:
Ioannis Vranos wrote:
Victor Bazarov wrote:
No, that's incorrect. See my example:

namespace NS {
class foo;
void bar(foo*);
}

int main() {
NS::foo* pfoo = 0;
bar(pfoo);
}

I happily used 'bar' without a namespace. That's what ADL is all about.

Where is the function definition?


In another translation unit.
Apart from missing function definition, this is the case of ADL (for
example bar(0); would not compile).


Of course it wouldn't. 0 has type 'int' there is no bar(int) here and the
NS namespace is not going to be looked at if you simply pass 0. But this:

bar((NS::foo*)0)

would compile just as well. Again, I didn't have to use 'NS::bar' for it
to be found. ADL takes care of that.

V
Jul 22 '05 #11
Victor Bazarov wrote:
Of course it wouldn't. 0 has type 'int' there is no bar(int) here and the
NS namespace is not going to be looked at if you simply pass 0.

Even if it was void bar(int) inside NS, it would not be called.

But this:

bar((NS::foo*)0)

would compile just as well. Again, I didn't have to use 'NS::bar' for it
to be found. ADL takes care of that.

Yes, it finds it because of NS::foo use. In general, you have to use the
namespace name in some way.


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Huy Ton That | last post by:
I have had some experience with programming and some with c++. Here is my situation: I need to learn ANSI C++ in it's entirety from the ground up. Where do I start? I already have Borland...
1
by: Dave | last post by:
#include <iostream> using std::cout; using std::endl; // #define CAUSE_ERROR namespace N { struct foo_t {};
6
by: SpOiLeR | last post by:
Why doesn't following code compile? Problem line is commented in code. ---------------------- Cut here------------------------------- #include <iostream> #include <list> #include <string> ...
2
by: Jean-Louis Leroy | last post by:
I'm trying to compile the following code with gcc (version below). I would expect the compile to try the operator ==() declared in Tangram::Backend because of Koenig lookup. But it doesn't happen....
3
by: REH | last post by:
I'm a little confused about argument dependent lookup. Exactly when does this apply? Specifically, I was hoping to use it to access enumeration constants. For example: namespace Flags { enum...
5
by: Javier Estrada | last post by:
I'm using a user-defined diagnostics stream and custom manipulators that work with it template<class charT, class traits = std::char_traits<charT> class basic_diagsstream : public...
5
by: Y2J | last post by:
I am working through this book on C++ programming, the author is speaking of using linked lists. He gave and example which I found confusing to say the least. So I rewrote the example in a way that...
16
by: Juha Nieminen | last post by:
The so-called koenig lookup allows doing odd things like this: #include <algorithm> #include <string> int main() { std::string table; sort(table, table+10); }
2
by: Peng Yu | last post by:
Hi, I'm wondering if Koenig lookup can be applied somehow to derive which template to use based on the template arguments. The following code shows an example where multiply_traits's namespace...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.