Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I'm going to start learning and using UML.

I need to know what considerations do you suggest for me? What is the best way to learn effectively it do you think?

Thank you

share|improve this question
6  
@Xavier Ho: That question has no upvoted answers. – Mark Byers May 22 '10 at 10:45
@Mark: Hm, noted. – Xavier Ho May 22 '10 at 10:49
UML is not a "real" language! – Secko May 23 '10 at 11:49
@Secko: UML is not a programming language, but it certainly is a real modeling language. – bakkal May 23 '10 at 12:54
show 1 more comment

closed as not constructive by Marcin, Brad Larson Aug 3 '12 at 21:30

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

11 Answers

In a class named SE101- Software Engineering 1A at CPIT in New Zealand.

In my opinion, you'll find that sequence and use case diagrams will be essential for getting ideas across to non-programmers, and class diagrams (and object diagrams, to a lesser extent), for communicating ideas to other code-monkeys.

Plus, many programming books that you may read in the future, Design Patterns, for example, will use UML diagrams (class and object, mostly) to show the structure of the patterns. Knowing UML will make understanding these books a lot easier. Documentation, too, to a lesser extent.

share|improve this answer

First, get a book/tutorial and try to understand the basics (definitions, models drawing, ...) then, learn by example and practice, imagine or use a real problem and try to model it.

share|improve this answer

I never did, and I never will. Modelling is not about mastering a type of discipline, good models don't need UML to be understood.

share|improve this answer
2  
UML is about unifying a modeling method so that everybody can understand what you are meaning by your model. Yes you can have a good model without UML but will everybody understand it? – Soufiane Hassou May 22 '10 at 10:53
1  
My argument is that if everybody can't understand it, it's not a good model (with or without knowledge of UML). That's not to say that a model can't be complex. It takes time and effort to understand the model, that however, won't change just becuase you try to unify how your chose to represent your model with something like UML. – John Leidegren May 22 '10 at 11:19
1  
+1 for adding some balance to the answers. While UML has its uses, it is not the be-all-and-end-all that many others would suggest. (The way people talk about UML now reminds me of how people used to talk about flow diagrams!). – Jason Williams May 23 '10 at 10:59
1  
The question was specifically about learning UML - besides it is a standard, and it is something everyone already knows/can learn so communication is much easier using UML. – Roopesh Shenoy Jul 5 '11 at 5:36
1  
UML is not meant to solve soft problems - it was never meant to - it was meant to be a uniform way to communicate a modeled behavior for a proposed system. Just imagine you have to send your team's design to a client half-way around the world, each of you having own notations of how the model should be interpretted - for eg, what an arrow means.. - its bound to cause mayhem. UML is there to solve THAT. Nothing else. – Roopesh Shenoy Jul 8 '11 at 18:08
show 6 more comments

I started by reading an introductory book - Martin Fowler UML Distilled was quite good. Than I decided I really want to know how to use it, so I read a book about UML2 and UP (Unified Process) by Jim Arlow and Ila Neustadt. Afterward I had opportunity to take software engineering basics lecture at university which made me create simple specification with few diagrams. Afterward I took UML lecture, where I had again to create some UML diagrams. Now I am in the phase when UML is clear and I feel I need more knowledge about OO modeling, so I read a book on object oriented data modeling and object oriented programming and there are Use Cases by Alistair Cockbourne and some analytical patterns ahead for me. In between I read much of the model driven stuff and listened to SE Radio about all UML stuff - http://www.se-radio.net/tags/uml .

share|improve this answer

UML Distilled by Martin Fowler together with Applying UML And Patterns by Craig Larman, makes you understand the concept of UML and how to use it - as well the whole process with UP and so forth.

share|improve this answer

http://www.smartdraw.com/resources/tutorials/uml-diagrams/#/resources/tutorials/Getting-Started

This link was very helpful for me to learn modeling with UML. For open source solutions check out Dia, and dia2code.

share|improve this answer

This link is a great reference with lots of examples too.

share|improve this answer
  • I have several UML books, UML Distilled book from Addison Wesley comes to mind,
  • then it all gets familiar when you start reading Design Pattern books that illustrates the concepts using UML Diagrams.
  • I also use UML when I sketch a design.
share|improve this answer

I read Martin Fowler's UML Distilled. That's all you need. It's thin, dense book that's unmatched on that topic.

share|improve this answer

You can only focus on 2 diagrams and start modeling almost immediately. Usecase diagrams require reading but class diagram can be done at the same time as the code. It means that in less than 3 hours you can model.

Usecase diagram is simple and will help you to define the scope of your project.

Class diagram will define the physical architecture and can therefore be learned at the same time as codding if you use a tool having live code and model synchronization.

Don't spend time on model driven and code generation from a model because nobody really use it today !!

share|improve this answer

Inventor. Sequence diagrams look more like business processes and usecases rather unstandardized.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.