什么是0,1 ,. ,*在此Yii2文档图像中

时间:2015-02-19 05:06:48

标签: php yii2

2 个答案:

答案 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”