工厂方法UML图澄清

发布于 2024-10-11 16:16:41 字数 342 浏览 3 评论 0原文

我正在经历此处描述的工厂方法模式。我不太明白从 ApplicationDocument 以及从 MyApplicationMyDocument 标记的箭头的含义。谁能帮助我理解这个符号。

替代文字

I was going through the factory method pattern describe here. I didn't quite get the meaning of the arrows marked from Application to Document and from MyApplication to MyDocument. Can anyone help to me to understand this notation.

alt text

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

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

发布评论

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

评论(1

顾铮苏瑾 2024-10-18 16:16:41

ApplicationDocument 之间的关系是一个聚合。这意味着应用程序(整体)包含文档(部分)。

MyApplicationMyDocument 之间的关系是依赖。这意味着当MyDocument改变时,MyApplication也可能改变。在这种情况下,它是一个 <>依赖关系,即 MyApplication 使用 MyDocument

The relation between Application and Document is an Aggregation. It means that an Application (Whole) contains Documents (Parts).

The relation between MyApplication and MyDocument is a Dependency. It means that MyApplication may change when MyDocument changes. In this case it is a <> Dependency, i.e. MyApplication uses MyDocument

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