英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论