Why don't C++ compilers define operator== and operator!= ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T06:35:37Zhttp://stackoverflow.com/feeds/question/217911http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator19Why don't C++ compilers define operator== and operator!= ?Rob2008-10-20T09:42:36Z2009-10-30T09:44:56Z
<p>I am a big fan of letting the compiler do as much work for you as possible. When writing a simple class the compiler can give you the following for 'free':</p>
<ul>
<li>A default (empty) constructor</li>
<li>A copy constructor</li>
<li>A destructor</li>
<li>An assignment operator (<code>operator=</code>)</li>
</ul>
<p>But it cannot seem to give you any comparison operators - such as <code>operator==</code> or <code>operator!=</code>. For example:</p>
<pre><code>class foo
{
public:
std::string str_;
int n_;
};
foo f1; // Works
foo f2(f1); // Works
foo f3;
f3 = f2; // Works
if (f3 == f2) // Fails
{ }
if (f3 != f2) // Fails
{ }
</code></pre>
<p>Is there a good reason for this? Why would performing a member-by-member comparison be a problem? Obviously if the class allocates memory then you'd want to be careful, but for a simple class surely the compiler could do this for you?</p>
http://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator/217931#2179312Answer by graham.reeds for Why don't C++ compilers define operator== and operator!= ?graham.reeds2008-10-20T09:50:35Z2008-10-20T09:50:35Z<p>I agree, for POD type classes then the compiler could do it for you. However what you might consider simple the compiler might get wrong. So it is better to let the programmer do it. </p>
<p>I did have a POD case once where two of the fields were unique - so a comparison would never be considered true. However the comparison I needed only ever compared on the payload - something the compiler would never understand or could ever figure out on it's own.</p>
<p>Besides - they don't take long to write do they?!</p>
http://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator/217934#21793426Answer by Mark Ingram for Why don't C++ compilers define operator== and operator!= ?Mark Ingram2008-10-20T09:53:07Z2008-10-20T09:53:07Z<p>The compiler wouldn't know whether you wanted a pointer comparison or a deep (internal) comparison.</p>
<p>It's safer to just not implement it and let the programmer do that themselves. Then they can make all the assumptions they like.</p>
http://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator/217950#2179506Answer by MSalters for Why don't C++ compilers define operator== and operator!= ?MSalters2008-10-20T09:59:31Z2009-10-30T09:44:56Z<p>C++0x <strike>has</strike> had a proposal for default functions, so you could say <code>default operator==;</code>
We've learnt that it helps to make these things explicit.</p>
http://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator/217970#2179705Answer by Paul de Vrieze for Why don't C++ compilers define operator== and operator!= ?Paul de Vrieze2008-10-20T10:06:15Z2008-10-20T10:06:15Z<p>Conceptually it is not easy to define equality. Even for POD data, one could argue that even if the fields are the same, but it is a different object (at a different address) it is not necessarily equal. This actually depends on the usage of the operator. Unfortunately your compiler is not psychic and cannot infer that.</p>
<p>Besides this, default functions are excellent ways to shoot oneself in the foot. The defaults you describe are basically there to keep compatibility with POD structs. They do however cause more than enough havoc with developers forgetting about them, or the semantics of the default implementations.</p>
http://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator/217973#2179731Answer by janm for Why don't C++ compilers define operator== and operator!= ?janm2008-10-20T10:07:10Z2008-10-20T10:07:10Z<p>The default comparison operators would be correct a vanishingly small amount of the time; I expect that they would be a source of problems rather than something useful.</p>
<p>Also, the default methods you mention are often undesirable. Seeing code like this to get rid of the default copy constructor and operator= is very common:</p>
<pre><code>class NonAssignable {
// ....
private:
NonAssignable(const NonAssignable&); // Unimplemented
NonAssignable& operator=(const NonAssignable&); // Unimplemented
};
</code></pre>
<p>In a lot of code it is common to see a comment "default copy constructor and operator= OK" to indicate that it is not a mistake that they have been removed or explicitly defined.</p>
http://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator/218091#2180915Answer by sergdev for Why don't C++ compilers define operator== and operator!= ?sergdev2008-10-20T11:23:28Z2009-10-29T07:04:00Z<p>It is not possible to define default <code>==</code>, but you can define default != via <code>==</code> which you should define yourselves.
For this you should do following things:</p>
<pre><code>#include <utility>
using namespace std::rel_ops;
...
class FooClass
{
public:
bool operator== (const FooClass& other) const {
// ...
}
};
</code></pre>
<p>You can see <a href="http://www.cplusplus.com/reference/std/utility/rel%5Fops/" rel="nofollow">http://www.cplusplus.com/reference/std/utility/rel%5Fops/</a> for details.</p>
<p>In addition if you define <code>operator< </code>, operators for <=, >, >= can be deduced from it when using <code>std::rel_ops</code>.</p>
<p>But you should be careful when you use <code>std::rel_ops</code> because comparison operators can be deduced for the types you are not expected for.</p>
<p>More preferred way to deduce related operator from basic one is to use <a href="http://www.boost.org/doc/libs/1_36_0/libs/utility/operators.htm" rel="nofollow">boost::operators</a>.</p>
<p>The approach used in boost is better because it define the usage of operator for the class you only want, not for all classes in scope.</p>
<p>You can also generate "+" from "+=", - from "-=", etc... (see full list <a href="http://www.boost.org/doc/libs/1_36_0/libs/utility/operators.htm#smpl_oprs" rel="nofollow">here</a>)</p>
http://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator/218713#21871314Answer by Michael Burr for Why don't C++ compilers define operator== and operator!= ?Michael Burr2008-10-20T14:53:20Z2008-10-20T17:26:27Z<p>The argument that if the compiler can provide a default copy constructor, it should be able to provide a similar default <code>operator==()</code> makes a certain amount of sense. I think that the reason for the decision to not provide a compiler-generated default for this operator can be guessed by what Stroustrup said about the default copy constructor in "The Design and Evolution of C++" (Section 11.4.1 - Control of Copying):</p>
<blockquote>
<p>I personally consider it unfortunate
that copy operations are defined by
default and I prohibit copying of
objects of many of my classes.
However, C++ inherited its default
assignment and copy constructors from
C, and they are frequently used.</p>
</blockquote>
<p>So instead of "why doesn't C++ have a default <code>operator==()</code>?", the question should have been "why does C++ have a default assignment and copy constructor?", with the answer being those items were in included reluctantly by Stroustrup for backwards compatibility with C (probably the cause of most of C++'s warts, but also probably the primary reason for C++'s popularity).</p>
<p>For my own purposes, in my IDE the snippet I use for new classes contains declarations for a private assignment operator and copy constructor so that when I gen up a new class I get no default assignment and copy operations - I have to explicitly remove the declaration of those operations from the <code>private:</code> section if I want the compiler to be able to generate them for me.</p>
http://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator/219372#2193721Answer by Jeffrey Martinez for Why don't C++ compilers define operator== and operator!= ?Jeffrey Martinez2008-10-20T18:20:29Z2008-10-20T19:16:31Z<p>Just a note, also provided by the compiler for free:</p>
<ul>
<li>operator new</li>
<li>operator new[]</li>
<li>operator delete</li>
<li>operator delete[]</li>
</ul>
http://stackoverflow.com/questions/217911/why-dont-c-compilers-define-operator-and-operator/714834#7148345Answer by alexk7 for Why don't C++ compilers define operator== and operator!= ?alexk72009-04-03T17:05:05Z2009-04-03T17:05:05Z<p>IMHO, there is no "good" reason. The reason there are so many people that agree with this design decision is because they did not learn to master the power of value-based semantics. People need to write a lot of custom copy constructor, comparison operators and destructors because they use raw pointers in their implementation.</p>
<p>When using appropriate smart pointers (like boost::shared_ptr), the default copy constructor is usually fine and the obvious implementation of the hypothetical default comparison operator would be as fine.</p>