3

Where I can see small examples of UML schemes with c++ code. I have no time to read UML standard :(

G-71
  • 3,626
  • 12
  • 45
  • 69
  • Assuming you already know C++ then: http://stackoverflow.com/questions/405953/generating-uml-from-c-code – Flexo May 24 '11 at 15:36

4 Answers4

3

You don't have to read the standard to understand UML. I found this book useful as a quick introduction: UML Weekend Crash Course

I would also discourage you to think about UML in relation to C++. it's supposed to be a way of modelling systems, not just documenting existing code.

Tony
  • 9,672
  • 3
  • 47
  • 75
1

You can try this (Structure Diagrams, Behavior Diagrams, Interaction Diagrams)

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

johannesMatevosyan
  • 1,974
  • 2
  • 30
  • 40
1

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

holtavolt
  • 4,378
  • 1
  • 26
  • 40
1

The only book you need to read on UML is Fowler's UML Distilled - it's very short and tells you all you need to know (if you need to know anything, I've never come across UML actually being used in practice). You certainly don't need to plough through the turgid works of the three amigos.