Overloading operator<< for primitive types. Is that possible? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:38:14Z http://stackoverflow.com/feeds/question/527742 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/527742/overloading-operator-for-primitive-types-is-that-possible 1 Overloading operator<< for primitive types. Is that possible? mslot 2009-02-09T11:09:53Z 2009-02-09T11:42:59Z <p>Hey. Is it possible to overload operator&lt;&lt; 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&lt;&lt; for int, so that it automatic puts a std::endl to the output? I have tried with this,</p> <pre><code>std::ostream&amp; operator&lt;&lt;(std::ostream&amp; strm, int &amp; i) { strm &lt;&lt; i &lt;&lt; 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&lt;&lt; in this way,</p> <pre><code>int main() { int i = 2; std::out&lt;&lt;"Here is an int " &lt;&lt; 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#527769 2 Answer by Muxecoid for Overloading operator<< for primitive types. Is that possible? Muxecoid 2009-02-09T11:20:15Z 2009-02-09T11:42:59Z <p>Remember that here you use &lt;&lt; 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)&lt;&lt;std::endl </code></pre> <p>Alternatively you could make boxed int class and override the &lt;&lt; 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#527773 1 Answer by zabzonk for Overloading operator<< for primitive types. Is that possible? zabzonk 2009-02-09T11:21:24Z 2009-02-09T11:21:24Z <p>Your problem is that there is <em>already</em> an overload for operator &lt;&lt; (ostream &amp;, int), the one supplied by the C++ standard library. If you remove the overload definition and use:</p> <pre><code>#include &lt;iostream&gt; int main() { int i = 2; std::out&lt;&lt;"Here is an int " &lt;&lt; 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#527788 2 Answer by Iraimbilanja for Overloading operator<< for primitive types. Is that possible? Iraimbilanja 2009-02-09T11:28:24Z 2009-02-09T11:28:24Z <p>As zabzonk said, the standard library provides an (ostream&amp;, 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&amp; operator&lt;&lt;(ostream&amp;, EndlinedInteger const&amp;); private: int i; }; ostream&amp; operator&lt;&lt;(ostream&amp; out, EndlinedInteger const&amp; ei) { out &lt;&lt; ei.i &lt;&lt; endl; return out; } int main() { EndlinedInteger i = 2; std::cout&lt;&lt;"Here is an int " &lt;&lt; i; } </code></pre>