来自Yii的文件
http://www.yiiframework.com/doc-2.0/guide-start-workflow.html#application-structure
这意味着什么?
答案 0 :(得分:6)
这些是UML图中不同类型的多重性。
Multiplicity Option Cardinality
0..0 0 Collection must be empty
0..1 No instances or one instance
1..1 1 Exactly one instance
0..* * Zero or more instances
1..* At least one instance
5..5 5 Exactly 5 instances
m..n At least m but no more than n instances
查看更多信息here。
答案 1 :(得分:1)
这是UML class diagram。并且0 .. *表示主要成员可以从0到无穷大孩子的关系。例如,“application”可能有0个或更多“模块”,但“entry script”只能有一个“application”