Why Does Ruby Only Permit Certain Operator Overloading - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T04:50:16Z http://stackoverflow.com/feeds/question/92862 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading 1 Why Does Ruby Only Permit Certain Operator Overloading Thanatos 2008-09-18T14:10:09Z 2008-09-20T20:53:26Z <p>In Ruby, like in many other OO programming languages, operators are overloadable. However, only certain character operators can be overloaded.</p> <p>This list may be incomplete but, here are some of the operators that cannot be overloaded: </p> <pre><code>!, not, &amp;&amp;, and, ||, or </code></pre> http://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading/92905#92905 6 Answer by Farrel for Why Does Ruby Only Permit Certain Operator Overloading Farrel 2008-09-18T14:14:12Z 2008-09-18T14:14:12Z <p>Methods are overloadable, those are part of the language syntax.</p> http://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading/92922#92922 12 Answer by Joe Van Dyk for Why Does Ruby Only Permit Certain Operator Overloading Joe Van Dyk 2008-09-18T14:16:01Z 2008-09-18T14:16:01Z <p><a href="http://ola-bini.blogspot.com/2007/10/operator-overloading-in-ruby.html?showComment=1191704640000#c7207705878073349200" rel="nofollow">"The &amp;&amp; and || operators are not overloadable, mainly because they provide "short circuit" evaluation that cannot be reproduced with pure method calls."</a></p> <p>-- Jim Weirich</p> http://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading/92931#92931 6 Answer by Jordi Bunster for Why Does Ruby Only Permit Certain Operator Overloading Jordi Bunster 2008-09-18T14:16:58Z 2008-09-18T14:16:58Z <p>Yep. Operators are not overloadable. Only methods.</p> <p>Some operators are not really. They're sugar for methods. So <code>5 + 5</code> is really <code>5.+(5)</code>, and <code>foo[bar] = baz</code> is really <code>foo.[]=(bar, baz)</code>.</p> http://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading/98232#98232 1 Answer by Ryan Bigg for Why Does Ruby Only Permit Certain Operator Overloading Ryan Bigg 2008-09-19T00:11:42Z 2008-09-19T00:11:42Z <p>And let's not forget about <code>&lt;&lt;</code> for example:</p> <pre><code>string = "test" string &lt;&lt; "ing" </code></pre> <p>is the same as calling:</p> <pre><code>string.&lt;&lt;("ing") </code></pre> http://stackoverflow.com/questions/92862/why-does-ruby-only-permit-certain-operator-overloading/109347#109347 0 Answer by Jörg W Mittag for Why Does Ruby Only Permit Certain Operator Overloading Jörg W Mittag 2008-09-20T20:53:26Z 2008-09-20T20:53:26Z <p>In Ruby 1.9, the <code>!</code> operator is actually also a method and can be overriden. This only leaves <code>&amp;&amp;</code> and <code>||</code> and their low-precedence counterparts <code>and</code> and <code>or</code>.</p> <p>There's also some other "combined operators" that cannot be overriden, e.g. <code>a != b</code> is actually <code>!(a == b)</code> and <code>a += b</code> is actually <code>a = a+b</code>.</p>