UML类图基本元素符号
包含类的名称、属性和方法定义。
可见性修饰符:
接口名称通常以字母 "I" 开头。
接口定义通常也用于抽象类。
任意的描述性文字。
将类和接口分组。
Inheritance
Generalization
B 继承自 A。
B inherits from A.
B 实现了 A。
B implements A.
A 和 B 相互调用和访问对方的元素。
A and B call and access each other’s elements.
A 可以调用和访问 B 的元素,但 B 不可以访问 A 的元素。
A can call and access B’s elements, but not vice versa.
A 中拥有一个 B,但 B 脱离于 A 仍然可以独立存活。
A has a B, and B can outlive A.
A "uses" B = Aggregation : B exists independently (conceptually) from A.
A 中拥有一个 B,B 脱离 A 后在系统中没有任何存活的意义。
A has a B, and B depends on A.
A "owns" B = Composition : B has no meaning or purpose in the system without A.
B 的变化会影响 A,则 A 依赖于 B。
A dependency exists between two elements if changes to the definition of one element (the supplier) may cause changes to the other (the client).
出处:https://www.cnblogs.com/gaochundong/p/uml_class_diagram_notation.html
您的资助是我最大的动力!金额随意,欢迎来赏! 付款后有任何问题请给我留言。
如果,您认为阅读这篇博客让您有些收获,不妨点击一下右下角的【推荐】按钮。 如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的【关注我】。(●'◡'●)
因为,我的写作热情也离不开您的肯定与支持,感谢您的阅读,我是【Jack_孟】!
本文来自博客园,作者:jack_Meng,转载请注明原文链接:https://www.cnblogs.com/mq0036/p/13260164.html
【免责声明】本文来自源于网络,如涉及版权或侵权问题,请及时联系我们,我们将第一时间删除或更改!
posted on 2020-07-07 13:01 jack_Meng 阅读(1042) 评论(0) 编辑 收藏 举报