我是UML建模的新手,我需要写下一个类的属性,该类是浮点元组的列表。属性部分需要详细程度如何?以下是进一步说明的代码示例:
# floats
x1 = 1.0
y1 = 1.0
x2 = 1.1
y2 = 1.1
x3 = 1.2
y3 = 1.2
# tuples of floats
tup1 = (x1,y1)
tup2 = (x2,y2)
tup3 = (x3,y3)
# list of tuples of floats / attribute of my class
points = [tup1,tup2,tup3]
元组表示2d空间(x和y坐标)中的点。 "点"的属性是什么?看起来像?
我想到了不同的可能性,但我对它们并不满意:
点:元组[2 .. *]
点:浮动[2 .. *] [2]
我输了!任何帮助表示赞赏。