约 4,140,000 个结果
在新选项卡中打开链接
  1. oop - Explanation of the UML arrows - Stack Overflow

    2009年12月9日 · I have recently been studying UML and drawing simple diagrams with ordinary plain arrows between classes, but I know it's not enough. There are plenty of other arrows: …

  2. uml - Class Diagram and Object Diagram - Stack Overflow

    2016年2月4日 · 1 I am making a structural diagram in UML using classes and objects and wondered if I was doing it correctly. Would the following (on the right) be the correct way to …

  3. uml - What is the difference between a Class Diagram vs an Object ...

    A static object diagram is an instance of a class diagram; it shows a snapshot of the detailed state of a system at a point in time. The use of object diagrams is fairly limited, mainly to show …

  4. How to represent an attribute's data type as an array of objects on ...

    2014年12月13日 · I have a SportsCentre class which contains an array of Employee objects. Which is the right way to show that an attribute's data type is an array of objects? I have found …

  5. What's the best way to generate a UML diagram from Python …

    2015年5月3日 · A colleague is looking to generate UML class diagrams from heaps of Python source code. He's primarily interested in the inheritance relationships, and mildly interested in …

  6. How to show multiplicities in UML object diagrams

    2013年2月23日 · You can use, e.g., an std::vector<Class> if you want to show a set of objects in a class diagram. You can use instance1:Class, instance2:Class ... instanceN:Class if you want …

  7. How to represent calls within same class using UML-Sequence …

    2013年2月11日 · What I need is a representation similar to a stacktrace in UML sequence diagram. Is it possible using sequence diagram or is some other diagram a better way for …

  8. In UML class diagrams, what are Boundary Classes, Control …

    2022年2月27日 · In the class diagram, there are model elements known as Boundary Class, Control Class, and Entity Class. However, I can't find a good definition of them, but I did find …

  9. How to define enumeration in uml object diagram

    2015年5月15日 · You can use an enumeration literal as a property value in some other object instance. For example, you might see a slot like dayOfWeek = Sunday inside an object …

  10. How do I represent an Array of objects in a class diagram

    2022年12月22日 · Of course, you could make the shortcut and not define classes for Option and Variation, and use Object instead. But this does not represent accurately your model in UML, …