Some time ago I read an article that explained several pitfalls of argument dependent lookup, but I cannot find it anymore. It was about gaining access to things that you should not have access to or something like that. So I thought I'd ask here: what are the pitfalls of ADL?
|
feedback
|
|
There is a huge problem with argument-dependent lookup. Consider, for example, the following utility:
It's simple enough, right? We can call Actually, it turns out that if we only look at this code, we have absolutely no idea what function will be called by As an example, let's say you have written a class to represent a unicorn. For some reason, you've also defined a function named
Next, you write a little program that creates a unicorn and prints it four times:
You compile this program, run it, and... it crashes. "What?! No way," you say: "I just called Why is Because of argument-dependent lookup, the compiler includes this namespace in its search for candidate functions named (If you don't believe this, you can compile the code in this question as-is and see ADL in action.) Yes, argument-dependent lookup is an important feature of C++. It is essentially required to achieve the desired behavior of some language features like overloaded operators (consider the streams library). That said, it's also very, very flawed and can lead to really ugly problems. There have been several proposals to fix argument-dependent lookup, but none of them have been accepted by the C++ standards committee. | |||||||||||||||||||||
feedback
|