Java教程

PlantUML 时序图 基本例子

本文主要是介绍PlantUML 时序图 基本例子,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

基本的例子

序列-> 用于绘制两个参与者之间的信息。参与者不必明确声明。

要有一个点状的箭头,就用–>

也可以用<- 和<-- 。这不会改变绘图,但可能提高可读性。注意,这只适用于顺序图,其他图的规则不同。

plantuml
@startuml
!include https://f.umlcn.com/c4.puml

Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response

Alice -> Bob: Another authentication Request
Alice <-- Bob: Another authentication Response
@enduml

file

https://umlcn.com

这篇关于PlantUML 时序图 基本例子的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!