Namespaces and Operator Overloading in C++ - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T02:50:08Z http://stackoverflow.com/feeds/question/171862 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/171862/namespaces-and-operator-overloading-in-c 4 Namespaces and Operator Overloading in C++ jonner 2008-10-05T11:58:04Z 2008-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&amp;, const A&amp;); } // namespace Lib </code></pre> <p>or the global namespace</p> <pre><code>namespace Lib { class A { }; } // namespace Lib Lib::A operator+(const Lib::A&amp;, const Lib::A&amp;); </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#171869 14 Answer by David Pierre for Namespaces and Operator Overloading in C++ David Pierre 2008-10-05T12:03:24Z 2008-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#171881 3 Answer by Ates Goral for Namespaces and Operator Overloading in C++ Ates Goral 2008-10-05T12:20:24Z 2008-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&amp;); }; } // namespace Lib </code></pre> http://stackoverflow.com/questions/171862/namespaces-and-operator-overloading-in-c/171882#171882 4 Answer by Ferruccio for Namespaces and Operator Overloading in C++ Ferruccio 2008-10-05T12:21:18Z 2008-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>