【PlantUML系列】流程图(四)

目录

目录

一、基础用法

[1.1 开始和结束](#1.1 开始和结束)

[1.2 操作步骤](#1.2 操作步骤)

[1.3 条件判断](#1.3 条件判断)

[1.4 并行处理](#1.4 并行处理)

[1.5 循环](#1.5 循环)

[1.6 分区](#1.6 分区)

[1.7 泳道](#1.7 泳道)

一、基础用法

1.1 开始和结束

开始一般使用**++start++关键字;结束一般使用++stop/end++** 关键字。基础用法包括:

  • start ... stop

  • start ... end

    @startuml
    start
    :执行操作A;
    stop
    @enduml

1.2 操作步骤

语法为++:operation++ ,其中 operation 是你为该步骤定义的名称。例如:

复制代码
@startuml
:开始;
:执行操作A;
:执行操作B;
:结束;
@enduml

1.3 条件判断

使用PlantUML语法通常使用++if-else++关键字。通常由三种语法:

  • if (...) then (...) ... [else (...) ...] endif
  • if (...) is (...) then ... [else (...) ...] endif
  • if (...) equals (...) then ... [else (...) ...] endif

例如:

复制代码
@startuml
:开始;
:执行操作A;
:判断是否满足条件;
if (满足条件) then (是)
  :执行操作B;
else (否)
  :执行操作C;
endif

if (条件) is (是) then
   :执行操作D;
else
   :执行操作E;
endif

if (条件) equals (是) then
   :执行操作F;
else
   :执行操作G;
endif
:结束;
@enduml

多分支判断使用++elseif++关键字,其中包含水平模式、垂直模式;

  • 水平模式

    @startuml
    start
    if (condition A) then (yes)
    :Text 1;
    elseif (condition B) then (yes)
    :Text 2;
    stop
    (no) elseif (condition C) then (yes)
    :Text 3;
    (no) elseif (condition D) then (yes)
    :Text 4;
    else (nothing)
    :Text else;
    endif
    stop
    @enduml

  • 垂直模式 :使用**!pragma useVerticalIf on**进入垂直模式。

    ​@startuml
    start
    !pragma useVerticalIf on
    if (condition A) then (yes)
    :Text 1;
    elseif (condition B) then (yes)
    :Text 2;
    stop
    (no) elseif (condition C) then (yes)
    :Text 3;
    (no) elseif (condition D) then (yes)
    :Text 4;
    else (nothing)
    :Text else;
    endif
    stop
    @enduml

1.4 并行处理

并行处理可以用 forkjoin 来表示,fork 表示分支开始,merge 表示分支合并。

  • fork ... fork again ... end fork

  • fork ... fork again ... end merge

    @startuml
    start
    fork
    :action 1;
    fork again
    :action 2;
    end fork

    fork
    :action 3;
    fork again
    :action 4;
    end merge
    stop
    @enduml

1.5 循环

循环包括无条件循环(Repeat loop)、有条件循环(While loop),典型的写法包括:

  • repeat ... repeat while (...) is (...) not (...)
  • repeat ... backward ... repeat while (...) is (...) -> (...)
  • while (...) end while

repeat案例:

复制代码
@startuml
start

repeat
  :read data;
  :generate diagrams;
repeat while (more data?) is (yes) not (no)

repeat
  :read data;
  :generate diagrams;
backward :write data;
repeat while (more data?) is (yes)
-> no;
  :next action;

while (check filesize ?) is (not empty)
  :read file;
  backward:log;
endwhile (empty)
:close file;

stop
@enduml

1.6 分区

在PlantUML中,Partition 是用来定义分区的关键字,它允许你将多个活动组合在一起。

复制代码
@startuml
start
partition Initialization {
    :read config file;
    :init internal variable;
}
partition Running {
    :wait for user interaction;
    :print information;
}

stop
@enduml

1.7 泳道

在PlantUML中,使用++|Swimlane1|++来表示泳道,例如:

复制代码
@startuml
|Swimlane1|
start
:foo1;
|#AntiqueWhite|Swimlane2|
:foo2;
:foo3;
|Swimlane1|
:foo4;
|Swimlane2|
:foo5;
stop
@enduml

参考资料:New Activity Diagram Beta syntax and features

相关推荐
火车叨位去19497 小时前
用Java实现rpc的逻辑和流程图和核心技术与难点分析
java·rpc·流程图
数据爬坡ing1 天前
软件工程之可行性研究:从理论到实践的全面解析
大数据·流程图·软件工程·可用性测试
Watermelo6171 天前
极致的灵活度满足工程美学:用Vue Flow绘制一个完美流程图
前端·javascript·vue.js·数据挖掘·数据分析·流程图·数据可视化
没有bug.的程序员2 天前
《 Spring Boot启动流程图解:自动配置的真相》
前端·spring boot·自动配置·流程图
DesolateGIS2 天前
Github上传文件流程图
流程图
海天鹰3 天前
Mermaid流程图
流程图
非凡ghost4 天前
Draw.io v28.0.6 中文绿色版:免费流程图制作工具
流程图·生活·软件需求·draw.io
麦兜*5 天前
【Spring Boot】Spring Boot循环依赖破解:@Lazy与Setter注入的取舍指南(流程图修复版)
java·spring boot·python·spring·spring cloud·系统架构·流程图
fish-man5 天前
【无标题】流程图问题处理
java·前端·流程图
Lin_Miao_095 天前
基础流程图
流程图