如何在Groovy中拦截此构造函数调用?

时间:2009-08-10 12:57:46

标签: groovy constructor intercept

在脚本中,方法接收File类型的参数,并将其发送到File的构造函数。这会爆炸,因为File没有将另一个文件作为参数的构造函数。

如何拦截此调用,并将参数修改为parameter.absolutePath

例如:


def x = new File("some_file")
...
def meth(def param) {
  def y = new File(param) // if param is of type File, this blows up
  // and I'd like groovy's intercepting capabilities to invoke this instead
  // def y = new File(param.absolutePath)
}

如果无法做到,我怎么能添加这个构造函数:


File(File other) {
  this(other.absolutePath)
}

1 个答案:

答案 0 :(得分:7)

我设法找到答案here。以下是使我上面写的内容有效的代码:


File.metaClass.constructor << { File arg ->
  new File(arg.absolutePath)
}