digraph UMLClassDiagram {
// 指定节点类型,这样节点才会变成UML的类图矩形
node [shape=record, fontname="Arial"];
// 定义节点数据
// 其中“|”会渲染成横线;
// \l表示向左对齐,同时换行
// \n表示居中对齐,同时换行
class1 [label="{
Class 1
|
+ attribute1: type\l
+ method1()\l
|
+ staticMethod(): returnType\l
}"];
class2 [label="{
Class 2|+ attribute2: type\l
- privateAttribute: type\l
|
+ method2()\l}
"];
class3 [label="{
Class 2|+ attribute2: type\l
- privateAttribute: type\l
|
+ method2()\l}
"];
class1 -> class2 [arrowhead="empty"]; // 空心箭头
class2 -> class3 [arrowhead="empty", style="dashed"]; // 空心虚线箭头(实现)
}
标签:class2,类图,label,UML,graphviz,type From: https://www.cnblogs.com/code-pigeon/p/17903210.html