Namespaces and Operator Overloading in C++ - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T02:50:08Zhttp://stackoverflow.com/feeds/question/171862http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/171862/namespaces-and-operator-overloading-in-c4Namespaces and Operator Overloading in C++jonner2008-10-05T11:58:04Z2008-10-05T12:21:18Z
<p>When authoring a library in a particular namespace, it's often convenient to provide overloaded operators for the classes in that namespace. It seems (at least with g++) that the overloaded operators can be implemented either in the library's namespace:</p>
<pre><code>namespace Lib {
class A {
};
A operator+(const A&, const A&);
} // namespace Lib
</code></pre>
<p>or the global namespace</p>
<pre><code>namespace Lib {
class A {
};
} // namespace Lib
Lib::A operator+(const Lib::A&, const Lib::A&);
</code></pre>
<p>From my testing, they both seem to work fine. Is there any practical difference between these two options? Is either approach better?</p>
http://stackoverflow.com/questions/171862/namespaces-and-operator-overloading-in-c/171869#17186914Answer by David Pierre for Namespaces and Operator Overloading in C++David Pierre2008-10-05T12:03:24Z2008-10-05T12:03:24Z<p>You should define them in the library namespace.
The compiler will find them anyway through argument dependant lookup.</p>
<p>No need to pollute the global namespace.</p>
http://stackoverflow.com/questions/171862/namespaces-and-operator-overloading-in-c/171881#1718813Answer by Ates Goral for Namespaces and Operator Overloading in C++Ates Goral2008-10-05T12:20:24Z2008-10-05T12:20:24Z<p>You should define it in the namespace, both because the syntax will be less verbose and not to clutter the global namespace.</p>
<p>Actually, if you define your overloads in your class definition, this becomes a moot question:</p>
<pre><code>namespace Lib {
class A {
public:
A operator+(const A&);
};
} // namespace Lib
</code></pre>
http://stackoverflow.com/questions/171862/namespaces-and-operator-overloading-in-c/171882#1718824Answer by Ferruccio for Namespaces and Operator Overloading in C++Ferruccio2008-10-05T12:21:18Z2008-10-05T12:21:18Z<p>Putting it into the library namespace works because of <a href="http://en.wikipedia.org/wiki/Argument_dependent_name_lookup" rel="nofollow">Koenig lookup</a>.</p>