Where can I see examples of UML schemes with C ++ source

Where can I see small examples of UML schemes with C ++ code. I do not have time to read the UML standard :(

+3
source share
4 answers

You do not need to read the standard to understand UML. I found this book useful as a brief introduction: UML Weekend Crash Course

I would also discourage you from thinking about UML in relation to C ++. it should be a way to model systems, not just document existing code.

+3
source

This site has UML diagrams and a corresponding source in C ++ and Java → http://www.vincehuston.org/dp/

+1
source

The only book you should read in UML is Fowler UML Distilled - it is very short and tells you everything you need to know (if you need to know everything, I never came across the UML actually used in practice). You, of course, do not need to plow through the peat work of the three amigas.

+1
source

You can try this (Structural diagrams, behavior diagrams, interaction diagrams)

https://ece.uwaterloo.ca/~dwharder/aads/Online/UML/

+1
source

All Articles