Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save juandiegoh/5c4aed8c90cd81bed0b0 to your computer and use it in GitHub Desktop.
Save juandiegoh/5c4aed8c90cd81bed0b0 to your computer and use it in GitHub Desktop.
class MyClass {
def printAandB() {
print "A"
b()
}
def printB() {
print "B"
}
}
def myObject = new MyClass()
myObject.printAandB() // print -> "AB"
// change dynamically method definition
myObject.metaClass.b = {
print "C"
}
myObject.printAandB() // print -> "AC"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment