UML Class Diagram Explanation

This section explains the key concepts of Class Diagrams and UML.

Class Diagram Symbols

The main symbols shown on class diagrams are:

Diagram: Class Diagram Symbols

Hint: A rectangle represents a class. Look for examples below for the various symbols.

Classes

A class represents a concept and encapsulates state (attributes) and behavior (operations). Each attribute has a type, and each operation has a signature. The class name is the only mandatory information.

Diagram: Class Example

Hint: A class shows attributes and operations. Attributes are usually shown with a hyphen prefix, operations with a plus.

Associations and Multiplicity

Associations show how two classes are related to each other. Multiplicity symbols indicate how many instances of one class are related to another. For example:

Diagram: Association Example

Hint: A line connects classes to show an association. Multiplicity (how many) is often shown.