473,653 Members | 3,000 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1699
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_typ e 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.********@com Acast.net> wrote in message
news:EO******** ***********@new sread1.mlpsca01 .us.to.verio.ne t...
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::con stant" 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::con stant" 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::con stant" 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.********@com Acast.net> wrote in message
news:bq******** ***********@new sread1.mlpsca01 .us.to.verio.ne t...
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.********@com Acast.net> wrote in message
news:bq******** ***********@new sread1.mlpsca01 .us.to.verio.ne t...
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

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

Similar topics

3
1673
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 Builder 6 so a compiler is not an issue. Please be specific in your replies; I would appreciate it greatly. Thank you in advance. -Huy
1
1607
by: Dave | last post by:
#include <iostream> using std::cout; using std::endl; // #define CAUSE_ERROR namespace N { struct foo_t {};
6
1657
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> using namespace std;
2
1924
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. Is it me or the compiler? namespace Tangram { namespace Backend { struct RELATIONAL;
3
1220
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 flag_type {F1, F2, F3}; } void foo(Flags::flag_type f) {
5
2341
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 std::basic_ostream<charT, traits ... } and a manipulator
5
3361
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 I could better understand the concept, he was trying to convey to me. I ran my own example and it crashed and burn "what a surprise!" : (. I ran the authors example out of the book and quess what, it crashed also, : 0. I ran them both on my...
16
1647
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
2121
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 A has to be specified in the definition of Y. This makes Y unusable for any multiply_traits defined in other namespaces, which corresponding T1 and T2 defined in those namespaces. See also comments in the code.
0
8370
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8283
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8470
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8590
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7302
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6160
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5620
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
1914
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1591
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.