开发者

Using UML to Understand Code

I'm new to UML and I've managed to convert the source into class diagrams which shows every class in a box. but that doesn't seem like enough for me to understand how the functions and objects are connected. Is that all what a programmer needs or what more can be done to better understand the information flow of their project? I'm currently worki开发者_Python百科ng in 'Enterprise Architect'.


The class model (and class diagrams) only show the static structure of your code. They show nothing about interactions over time. You will want one of the behavior diagrams for that - a Sequence diagram, Activity diagram, or maybe even a State diagram.


You should connect the classes, if a class depends on another one, the link between them needs to be put in.

Connectors are not just for inheritance, they also describe objects used by the class or held within them.

Here's a quicky tutorial.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜