PlantUML快速指南

金融量化学习---Python, MySQL, Pandas / 2023-07-26 / 原文

目录
  • 什么是PlantUML
  • 语法入门
  • 复杂图式
    • null

什么是PlantUML

PlantUML是一个快速创建UML图形的组件,官网上之所以称它是一个组件,我 想主要是因为多数情况下我们都是在Eclipse、NetBenas、Intellijidea、 Emacs、Word等软件里来使用PlantUML。

官方地址:https://plantuml.com/zh/
官方教程:https://plantuml.com/zh/guide

PlantUML支持的图形有:
sequence diagram,
use case diagram,
class diagram,
activity diagram (here is the new syntax),
component diagram,
state diagram,
object diagram,
wireframe graphical interface

语法入门

复杂图式

http://www.plantuml.com/plantuml/uml/SyfFKj2rKt3CoKnELR1Io4ZDoSa70000

http://archive.3zso.com/archives/plantuml-quickstart.html#sec-2

@startuml
skin rose
start
partition "**新产品意向与识别**" {
    note
        这是我的注释
        ----
        //Creole 测试//
    end note
    :Ready;
    :HelloWorld(i)>
    :Hello-Sent;
}

@enduml