1 / 2

Unified Modeling Language (UML)

Unified Modeling Language (UML). Unified Modeling Language Graphical language for designing, documenting and communicating designs object-oriented software Standardized by the Object Management Group (OMG) and backed by a large group of software companies

Télécharger la présentation

Unified Modeling Language (UML)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Unified Modeling Language (UML) Unified Modeling Language • Graphical language for designing, documenting and communicating designs object-oriented software • Standardized by the Object Management Group (OMG) and backed by a large group of software companies • Allows the specification and description of object-oriented software at various levels of detail • Supported by many different CASE tools for • Designing OO software • Documenting OO software • Reverse engineering OO software • Creating skeleton code for OO software • Refactoring OO software Good tutorial on object-orientation development process and short (about 200 pages) introduction to the UML.

  2. Overview of Basic UML Notation for Object Orientation (OO) Simple UML Class Diagram Compatible C++ declarations Abstract member function (italics) Classes class BaseA { public: virtual ~BaseA() {} virtual int aFunc() const = 0; virtual C& c() = 0; … }; class DerivedB : public BaseA { public: … private: std::vector<BaseD*> d_; }; class C { … }; class BaseD { … }; class DerivedE : public BaseD { public: void eFunc( const C& c ); … }; Abstract class (italics) c BaseA C aFunc(): int Association Dependency Inheritance Association Abstract class and inheritance (italics) d BaseD DerivedB 1…* Multiplicity DerivedE Relationships eFunc(in c: C) Concrete class (non-italics) Member function implementation (non-italics)

More Related