Overloading operator<< for primitive types. Is that possible? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:38:14Zhttp://stackoverflow.com/feeds/question/527742http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/527742/overloading-operator-for-primitive-types-is-that-possible1Overloading operator<< for primitive types. Is that possible?mslot2009-02-09T11:09:53Z2009-02-09T11:42:59Z
<p>Hey. Is it possible to overload operator<< for primitive types? Fx lets say that I want to write a std::endl each time want to write a int. Can I overload operator<< for int, so that it automatic puts a std::endl to the output? I have tried with this,</p>
<pre><code>std::ostream& operator<<(std::ostream& strm, int & i)
{
strm << i << std::endl;
return strm;
}
</code></pre>
<p>but it doesn't work. I cant recall the compiler error message, but I think that I'm getting operator overloading all wrong any ways.
I try to call the above overloaded operator<< in this way,</p>
<pre><code>int main()
{
int i = 2;
std::out<<"Here is an int " << i;
return 0;
}
</code></pre>
<p>But it doesn't work at all. Maybe I can't overload POD types?</p>
http://stackoverflow.com/questions/527742/overloading-operator-for-primitive-types-is-that-possible/527769#5277692Answer by Muxecoid for Overloading operator<< for primitive types. Is that possible?Muxecoid2009-02-09T11:20:15Z2009-02-09T11:42:59Z<p>Remember that here you use << operator not only on int but also on ostream. You could derive from ostream and implement it in your own derived class, but I would suggest to make a simple macro like</p>
<pre><code>#define EL(i) (i)<<std::endl
</code></pre>
<p>Alternatively you could make boxed int class and override the << for standard ostream and boxed int (like in answer by Iraimbilanja) class. Sounds like huge overkill but could work.</p>
http://stackoverflow.com/questions/527742/overloading-operator-for-primitive-types-is-that-possible/527773#5277731Answer by zabzonk for Overloading operator<< for primitive types. Is that possible?zabzonk2009-02-09T11:21:24Z2009-02-09T11:21:24Z<p>Your problem is that there is <em>already</em> an overload for operator << (ostream &, int), the one supplied by the C++ standard library. If you remove the overload definition and use:</p>
<pre><code>#include <iostream>
int main()
{
int i = 2;
std::out<<"Here is an int " << i;
return 0;
}
</code></pre>
<p>things work as expected.</p>
<p>And BTW, compiler error messages are kind of important, so it's a good idea to remember them and quote them in posts when asking questions.</p>
<p>edit - std::out above should of couse be std::cout</p>
http://stackoverflow.com/questions/527742/overloading-operator-for-primitive-types-is-that-possible/527788#5277882Answer by Iraimbilanja for Overloading operator<< for primitive types. Is that possible?Iraimbilanja2009-02-09T11:28:24Z2009-02-09T11:28:24Z<p>As zabzonk said, the standard library provides an (ostream&, int) overload so you can't define another.</p>
<p>To simulate what you were doing (though it is completely pointless in its present form :) :</p>
<pre><code>class EndlinedInteger {
public:
EndlinedInteger(int i) : i(i) { }
friend ostream& operator<<(ostream&, EndlinedInteger const&);
private:
int i;
};
ostream& operator<<(ostream& out, EndlinedInteger const& ei) {
out << ei.i << endl;
return out;
}
int main()
{
EndlinedInteger i = 2;
std::cout<<"Here is an int " << i;
}
</code></pre>