1

这里的例子:

Public Class myclass
 Private one As Integer
 Public Property myproperty() As myproperty
    Get
        Return one
    End Get
    Set(ByVal value As myproperty)
        one= value
    End Set
 End Property
End Class

我知道 myclass 是类,一个是属性,但是 myproperty 呢?

4

1 回答 1

1

我会说“一个”只是一个实现细节,不应该出现在 UML 中。您只需拥有一个带有 UML 属性(您命名的属性)“myproperty”的 UML 类“myclass”。

于 2012-10-15T07:56:54.910 回答