How to change behaviour of the methed in groovy using that method in metaclass - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T04:24:17Zhttp://stackoverflow.com/feeds/question/920582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/920582/how-to-change-behaviour-of-the-methed-in-groovy-using-that-method-in-metaclass1How to change behaviour of the methed in groovy using that method in metaclassPiotr K.2009-05-28T12:24:37Z2009-05-29T05:04:54Z
<p>I would like to "spoil" plus method in Groovy in the following way:</p>
<pre><code>Integer.metaClass.plus {Integer n -> delegate + n + 1}
assert 2+2 == 5
</code></pre>
<p>I am getting StackOverflowException (which is not surprising). </p>
<p>Is there any way to use "original" plus method inside metaclass' closure?</p>
http://stackoverflow.com/questions/920582/how-to-change-behaviour-of-the-methed-in-groovy-using-that-method-in-metaclass/922787#9227871Answer by peacefulfire for How to change behaviour of the methed in groovy using that method in metaclasspeacefulfire2009-05-28T19:37:42Z2009-05-28T19:37:42Z<p>Use this to "spoil" plus method: </p>
<pre><code>Integer.metaClass.plus {Integer n -> delegate - (-n) - (-1)}
assert 2+2 == 5
</code></pre>
<p>Not surprisingly, using '+' operator in overloading plus method will result in StackOverflow, it is required to use something other then '+' operator.</p>
<p>Other mechanism: Use XOR or some bit operator magic.</p>
<p>Regards,
Peacefulfire</p>
http://stackoverflow.com/questions/920582/how-to-change-behaviour-of-the-methed-in-groovy-using-that-method-in-metaclass/924464#9244643Answer by Ted Naleid for How to change behaviour of the methed in groovy using that method in metaclassTed Naleid2009-05-29T05:04:54Z2009-05-29T05:04:54Z<p>The groovy idiomatic way is to save a reference to the old method and invoke it inside the new one. </p>
<pre><code>def oldPlus = Integer.metaClass.getMetaMethod("plus", [Integer] as Class[])
Integer.metaClass.plus = { Integer n ->
return oldPlus.invoke(oldPlus.invoke(delegate, n), 1)
}
assert 5 == 2 + 2
</code></pre>
<p>This isn't actually that well documented and I was planning on putting up a blog post about this exact topic either tonight or tomorrow :).</p>