通过 OCL 反转 Eclipse 建模框架模型中的 OrderedSet

发布于 2025-01-08 03:51:29 字数 155 浏览 1 评论 0原文

我有一个 UML 模型(实际上是不相关的,因为它可以是任何 MOF 模型),其中有一个有序集,我需要从最后一个元素访问到第一个元素。因此我需要通过 OCL 来反转它。我看到有 sortBy 方法需要 OCLExpression 用作排序标准,但我不知道如何使用它。

有什么想法吗?

I have a UML model (which is actually irrelevant as it could be any MOF model) with an ordered set I need to access from the last to the first element. I thus need to reverse it through OCL. I have seen there is the sortedBy method that needs an OCLExpression to use as sorting criterion but I can't get how to use it.

Any idea?

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

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

发布评论

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

评论(1

假装不在乎 2025-01-15 03:51:29

如果您正在使用 Acceleo(您的评论表明您正在使用),您有两个选择:

  • 使用 Acceleo 库(这不是100%纯OCL)
  • 使用类似“myOrderedSet->iterate(elem: MyType| myOrderedSet.insertAt(0, elem))”的东西

编辑:自从我一直使用反向以来,我已经很长时间没有使用迭代了,正确的迭代的 for 是这样的: 链接。如果有人有疑问,以下是相反的答案:链接

问候,

斯蒂芬·贝戈多

If you are using Acceleo (your comment is suggesting that you are), you have two options:

  • use "myOrderedSet->reverse()" provided by the Acceleo library (that's not 100% pure OCL)
  • use something like "myOrderedSet->iterate(elem: MyType| myOrderedSet.insertAt(0, elem))"

Edit: It's been a long time since I used iterate since I use reverse all the time, the correct for of the iterate is this: link. And in case anyone had a doubt, here is the answer with reverse: link

Regards,

Stephane Begaudeau

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