Skip to content

Instantly share code, notes, and snippets.

@irof
Created March 27, 2011 03:22
Show Gist options
  • Save irof/888880 to your computer and use it in GitHub Desktop.
Save irof/888880 to your computer and use it in GitHub Desktop.
差し替えた後元に戻す
class Hello {void hello(){println "1"}}
def a = new Hello()
a.hello()
a.metaClass.hello = { println "2" }
a.hello()
a.metaClass.hello = { a.&hello() }
a.hello()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment