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

发布于 2024-07-30 13:32:41 字数 537 浏览 6 评论 0原文

在脚本中,方法接收 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)
}

In a script a method receives a parameter of type File, and sends it to the constructor of File. This blows up because File doesn't have a constructor that takes another file as a parameter.

How can I intercept this call, and modify the parameter to parameter.absolutePath ?

For example :


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)
}

If that can't be done, how could I add this constructor :


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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等风也等你 2024-08-06 13:32:48

我设法在此处找到了答案。 这是使我上面写的代码起作用的代码:


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

I managed to find the answer here. Here's the code that makes what I wrote above work :


File.metaClass.constructor << { File arg ->
  new File(arg.absolutePath)
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文