UML多重性差异

发布于 2024-10-20 22:16:59 字数 190 浏览 4 评论 0原文

多重性 *0..* 之间有什么区别?

例如,同一关系的两个版本(A 和 B): Example

对于 Web 服务由任意数量的用户使用 的说法,哪一项更正确?

What is the difference between multiplicity * and 0..*?

For example two versions (A and B) of the same relationship:
Example

What will be more correct for statement Web-service is used by any number of users?

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

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

发布评论

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

评论(2

饭团 2024-10-27 22:16:59

虽然巴拉的答案是正确的,但我想补充一点,这不仅仅是风格问题。 UML 规范对于这个符号快捷方式是明确的:

UML 2.5.1,p.35:如果下限等于上限,则另一种表示法是使用仅包含上限的字符串。例如,“1”在语义上等同于“1..1”多重性。下限为零且上限未指定的重数可以使用包含单星“ * ”而不是“0..*”重数的替代表示法。

因此,这两个图是等效的。此外,如果您明确使用 0..*,您可能也会使用 1..1:

在此处输入图像描述

While Bala's answer is correct, I'd like to add for the records that it's not just a question of style. The UML specifications are explicit about this notational shortcut:

UML 2.5.1, p.35: If the lower bound is equal to the upper bound, then an alternate notation is to use a string containing just the upper bound. For example, “1” is semantically equivalent to “1..1” multiplicity. A multiplicity with zero as the lower bound and an unspecified upper bound may use the alternative notation containing a single star “ * ” instead of “0..*” multiplicity.

So, both diagrams are equivalent. Moreover, if you're explicit with 0..*, you would probably do as well with 1..1:

enter image description here

听,心雨的声音 2024-10-27 22:16:59

它们是一体的;只是一个偏好问题。 x..y 样式特别适用于您已知的限制,通常不是 0 和 *,例如 1..105..*< /代码>

They are one and the same; just a matter of preference. The x..y style is particularly used with you have know limits, usually other than 0 and *, like 1..10 or 5..*

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