6

如何在 UML 类图中显示结构成员。在类图中,我将结构添加为属性,但不知道如何向该结构添加“x”、“下一个”元素。如果我从类图中生成 C++,它应该在 struct 中有“x”和“next”元素。

 class LinkList
    {
    private:
      // how to show the struct and its members in UML class diagram
      struct node
      {
         int x;
         node *next;
      }*p;

    public:
      // add an element
      void append(int num);

     // counts number of elements
      int count();
    };
4

1 回答 1

8

像这样的东西?! 在此处输入图像描述

并且您只需删除<<ptr>>刻板印象并同时使用 the *,例如+next:node*

于 2013-10-13T15:02:26.860 回答