字符串模板中的分隔符

发布于 2024-10-09 04:07:46 字数 509 浏览 0 评论 0原文

我在 stringtemplate 文件中有以下代码:

(1)    Module $component$ = new Module(new GeometryDescription[] {$shapes;separator=", "$});

我知道这是错误的,因为我希望能够生成多个此行,

以便当我调用组件列表 Component1(North,part1,part2) 组件 2(北、部分 1、部分 2、部分 3) 我得到以下信息:

  Module North = new Module(new GeometryDescription[] {part1,part2});
  Module South = new Module(new GeometryDescription[] {part1,part2,part3});

我怎样才能写句子(1)才能做到这一点 谢谢

I have the following code in a stringtemplate file:

(1)    Module $component$ = new Module(new GeometryDescription[] {$shapes;separator=", "$});

which i know is wrong as what I would like is to be able to generate multiple of this line

so that when i call a list of components Component1(North, part1, part2)
Component2(North, part1, part2,part3)
i get the following:

  Module North = new Module(new GeometryDescription[] {part1,part2});
  Module South = new Module(new GeometryDescription[] {part1,part2,part3});

how can i write sentence (1) to be able to do that
thanks

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

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

发布评论

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

评论(1

樱桃奶球 2024-10-16 04:07:46

您需要将 (1) 包装在模板中,然后将该模板映射到组件列表中。

You need to wrap (1) in a template and then map that template across your list of components.

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