📅  最后修改于: 2023-12-03 15:39:28.139000             🧑  作者: Mango
序列图和活动图是 UML(统一建模语言)中两种非常常用的图形建模工具,它们的主要区别如下:
示例代码片段:
@startuml title Sample Sequence Diagram
actor User User -> WebApplication: Open the browser
activate WebApplication
WebApplication -> Database: Select the products
activate Database
Database -> WebApplication: Return the product list
deactivate Database
WebApplication -> User: Display the product list
deactivate WebApplication @enduml
示例代码片段:
@startuml title Sample Activity Diagram
start if (User wants to buy?) then (yes) :Go to the product page; if (User has enough money?) then (yes) :Show successful purchase; else (no) :Show error message; endif else (no) stop endif @enduml