用 UML 表示模板类的正确方法是什么?
在 UML 图上,表示模板类的正确方法是什么?
On a UML diagram, what is the correct way to represent a template class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 UML 图上,表示模板类的正确方法是什么?
On a UML diagram, what is the correct way to represent a template class?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
普通矩形右上角有一个虚线矩形,用来表示模板参数。 像这样的事情:
Normal rectangle with a dotted rectangle in the top right corner, to represent the template parameter. Something like this:
更有用的方法是对模板使用 UML 分类器。 这是一个 UML 元素,表示 UML 符号的扩展。 如果您的工具支持配置文件,请在其中创建分类器。 为模板定义分类器,并包含模板中的属性和方法,然后使用为使用该模板的每个类创建的分类器,而不是使用标准类表示法。 这将是模板 UML 的正确用法。
A more useful approach is to use a UML Classifier for the Template. This is a UML Element that represents an extension to the UML notation. If your tool supports profiles create the Classifier within one. Define the Classifier for the Template, and include the properties and methods from the template, then instead of using the standard class notation, use the Classifier you have created for each Class that uses the template. This would be correct usage of the UML for Templates.