Skip to content

5.活动图

使用:进行标记,以;结束。

plantuml
@startuml
:Hello; 
:My **world**;
@enduml
@startuml
:Hello; 
:My **world**;
@enduml

开始、结束

  • start
  • stop / end
plantuml
start
:起床;
:吃饭;
:睡觉;
stop
start
:起床;
:吃饭;
:睡觉;
stop

条件判断

if (条件 A) then (yes)
  :文本 1;
elseif (条件 B) then (yes)
  :文本 2;
  stop
elseif (条件 C) then (yes)
  :文本 3;
elseif (条件 D) then (yes)
  :文本 4;
else (nothing)
  :文本 else;
endif
if (条件 A) then (yes)
  :文本 1;
elseif (条件 B) then (yes)
  :文本 2;
  stop
elseif (条件 C) then (yes)
  :文本 3;
elseif (条件 D) then (yes)
  :文本 4;
else (nothing)
  :文本 else;
endif
plantuml
start 
if (已登录) then(yes) 
 :进入系统; 
else(no)
 :登录;
 :进入系统;
endif
end
start 
if (已登录) then(yes) 
 :进入系统; 
else(no)
 :登录;
 :进入系统;
endif
end