Можно добавить новые конструкторы или заменить старые.Если вам нужен оригинальный конструктор, вы можете использовать отражение для этого:
MyObject.metaClass.constructor = { -> // for the no-arg ctor
// use reflection to get the original constructor
def constructor = MyObject.class.getConstructor()
// create the new instance
def instance = constructor.newInstance()
// ... do some further stuff with the instance ...
println "Created ${instance}"
instance
}
Обратите внимание, что вы должны изменить это, если у вас есть параметры для ваших конструкторов, например:
// Note that the closure contains the signature of the constructor
MyObject.metaClass.constructor = { int year, String reason ->
def constructor = MyObject.class.getConstructor(Integer.TYPE, String.class)
def instance = constructor.newInstance(
2014, "Boy, am I really answering a question three years old?")
// ... do some further stuff with the instance ...
println "Created ${instance}"
instance
}
PS: Обратите внимание, что если вы хотите добавить конструкторы, которые еще не существуют, используйте вместо этого оператор <<
: MyObject.metaClass.constructor << { /* as above */ }
.