重载点“.”加上“+”在 groovy dsl 中

发布于 2024-12-12 13:03:54 字数 204 浏览 0 评论 0原文

如何在 groovy 中使用 + 运算符重载 . 运算符。例如,我必须构建这样的 DSL:

model+make+version 而不是 model.make.version

如何使用 + 构建 dsl代码> 任何示例或提示

how to overload the . operator with + operator in groovy. for example i have to build the DSL somethong like this:

model+make+version instead of model.make.version

how to build the dsl using + any example or hint

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

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

发布评论

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

评论(1

半葬歌 2024-12-19 13:03:54

您不能重载.,您可以重载+model+make+version+"2" 实际上计算结果为 model.plus(make.plus(version.plus("2")))。在这些对象上提供 plus 方法就可以解决问题,但整个想法看起来很荒谬。

You can't overload the ., you can overload a +. model+make+version+"2" actually evaluates to model.plus(make.plus(version.plus("2"))). Providing plus methods on those objects will do the trick, but the whole idea just seems ridiculous.

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