How to change behaviour of the methed in groovy using that method in metaclass - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T04:24:17Z http://stackoverflow.com/feeds/question/920582 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/920582/how-to-change-behaviour-of-the-methed-in-groovy-using-that-method-in-metaclass 1 How to change behaviour of the methed in groovy using that method in metaclass Piotr K. 2009-05-28T12:24:37Z 2009-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 -&gt; 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#922787 1 Answer by peacefulfire for How to change behaviour of the methed in groovy using that method in metaclass peacefulfire 2009-05-28T19:37:42Z 2009-05-28T19:37:42Z <p>Use this to "spoil" plus method: </p> <pre><code>Integer.metaClass.plus {Integer n -&gt; 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#924464 3 Answer by Ted Naleid for How to change behaviour of the methed in groovy using that method in metaclass Ted Naleid 2009-05-29T05:04:54Z 2009-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 -&gt; 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>