PlantUML,一个通用类 – 在一个图表上有许多不同的实例 -。

huangapple go评论51阅读模式
英文:

PlantUML, one generic class - with many different occurences - on 1 diagram

问题

在PlantUML中,是否可以在一个图表中显示多个不同参数化的一般类?就像这样:

@startuml
class List<String>
class List<Long>
class List<Integer>
@enduml

在我的情况下,只显示 class List<Integer>。谢谢!

英文:

In PlantUML, is it possible to show - on one diagram - many differently parametrized, one generic class?
Like here:

@startuml
class List<String>
class List<Long>
class List<Integer>
@enduml

In my case it shows only class List<Integer>
Thanks!

答案1

得分: 1

使用 as 可以解决这个问题:

@startuml
class "List<String>" as ListString
class "List<Long>" as ListLong
class "List<Integer>" as ListInteger
@enduml
英文:

Using as fixes this:

@startuml
class "List<String>" as ListString
class "List<Long>" as ListLong
class "List<Integer>" as ListInteger
@enduml

PlantUML,一个通用类 – 在一个图表上有许多不同的实例 -。

huangapple
  • 本文由 发表于 2023年5月24日 22:41:48
  • 转载请务必保留本文链接:https://go.coder-hub.com/76324737.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定