Class Diagram
Mermaid로 클래스를 도식해보자
Last updated
Mermaid로 클래스를 도식해보자
Last updated
클래스끼리 관계를 지을 수 있다.
문법은 다음과 같다.
<|--
Inheritance
\*--
Composition
o--
Aggregation
-->
Association
--
Link (Solid)
..>
Dependency
..|>
Realization
..
Link (Dashed)
다양한 화살표를 지원한다.
이런 식으로 labeling도 가능하다.
1
Only 1
0..1
Zero or One
1..*
One or more
*
Many
n
n
0..n
zero to n
1..n
one to n
<<Interface>>
To represent an Interface class
<<Abstract>>
To represent an abstract class
<<Service>>
To represent a service class
<<Enumeration>>
To represent an enum
방향을 설정할 수 있다.