元素名称 |
符号图例 |
含义 |
Class |

|
包含类的名称、属性和方法定义。
可见性修饰符:
- + public
- - private
- # protected
- 无修饰符为 internal
|
Interface |

|
接口名称通常以字母 "I" 开头。
接口定义通常也用于抽象类。
|
Note |

|
任意的描述性文字。
|
Package |

|
将类和接口分组。
|
Inheritance
Generalization
|

|
B 继承自 A。
B inherits from A.
|
Realization |

|
B 实现了 A。
B implements A.
|
Association |

|
A 和 B 相互调用和访问对方的元素。
A and B call and access each other’s elements.
|
Association (one way) |

|
A 可以调用和访问 B 的元素,但 B 不可以访问 A 的元素。
A can call and access B’s elements, but not vice versa.
|
Aggregation |

|
A 中拥有一个 B,但 B 脱离于 A 仍然可以独立存活。
A has a B, and B can outlive A.
A "uses" B = Aggregation : B exists independently (conceptually) from A.
|
Composition |

|
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.
|
Dependency |

|
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).
|
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 为什么构造函数需要尽可能的简单
· 探秘 MySQL 索引底层原理,解锁数据库优化的关键密码(下)
· 大模型 Token 究竟是啥:图解大模型Token
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 【保姆级教程】windows 安装 docker 全流程
· 基于Docker+DeepSeek+Dify :搭建企业级本地私有化知识库超详细教程
· 由 MCP 官方推出的 C# SDK,使 .NET 应用程序、服务和库能够快速实现与 MCP 客户端
· 电商平台中订单未支付过期如何实现自动关单?
· X86-64位简易系统开发 - 从BIOS阶段开始