父类在类图中的位置
在设计类图时,是否有强制要求父类位于子类的顶部,或者父类位于左右或任何位置都没有关系。
when designing a class diagram, is there any compulsion to have parent class on the top of the child class or it does not matters if the parent class is in the right left or anywhere.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只要不同类之间有正确的链接,您就可以将父类放置在任何您想要的位置。
在小图中,传统上将父类置于子类之上。
So long as you have the right links between the different classes, you can place the parent wherever you want.
In small diagrams, traditionally one placed the parent above the child classes.
理想情况下,最好在 UML 类图中将父类放在子类之上,但如果您有空间和布局问题,则横向放置也是可以的。如果您使用软件来生成图表,那么他们会弄清楚如何很好地将父级放在顶部。
Ideally its better to have a parent class above the child class in the UML class diagram, but sideways is okay if you've space and layout issues. If you're using a software to generate the diagrams then they figure out how to put the parent at the top pretty well.
当我反转 log4J java 代码时,UML 类图布局会自动将子项放在下面。
我认为布局有一个尊重规范的逻辑。
When I reverse the log4J java code the UML class diagram layout automatically put children under.
I suppose the layout has a logic which respect specifications.