Link Search Menu Expand Document

Class Diagrams

A class diagram is a diagram used in designing and modeling software to describe classes and their relationships. Class diagrams enable us to model software in high level of abstraction and without having to look at the source code.

Classes in a class diagram correspond with classes in the source code. The diagram shows the names and attributes of the classes, connections between the classes and sometimes also the methods of the classes.

Next we will get familiar with creating and reading class diagrams using UML. Using an unified modeling language ensures that class diagrams drawn by different people can be read and understood by everyone familiar with the language.

Describing class and class attributes

First we will describe one class and its attributes. Below is the source code for a class called Person which has two class attributes name and age.

public class Person 
{
  private string name;
  private int age;
}

In a class diagram a class is represented by a rectangle with the name of the class written on top. A line below the name of the class divides the name from the list of attributes (names and types of the class variables). The attributes are written one attribute per line.

In a class diagram, class attributes are written “attributeName: attributeType”. + before the attribute name means the attribute is public, and - the attribute is private.

Person with name and age

Describing class constructor

Below we have the source code for a constructor for our Person class. The constructor gets the name of the person as a parameter.

public class Person 
{
  private string name;
  private int age;

  public Person(string initialName) 
  {
    this.name = initialName;
    this.age = 0;
  }
}

In a class diagram we list the constructor (and all other methods) below the attributes. A line below the attributes list separates it from the method list. Methods are written +/- (debending on the visibility of the method), method name, parameters and their types. The constructor above is written +Person(initialName:string)

The parameters are written the same way class attributes were, “parameterName: parameterType”.

Person with name, age and constructor

Describing class methods

Below we have added a method PrintPerson() which returns void to the Person class.

public class Person 
{
  private string name;
  private int age;

  public Person(string initialName) 
  {
    this.name = initialName;
    this.age = 0;
  }

  public void PrintPerson() 
  {
    Console.WriteLine(this.name + ", age " +   this.age + " years");
  }
}

In a class diagram we list all class methods with the constructors – constructors are listed first and then all class methods. We also write the return type of a method to the class diagram.

Person with name, age, constructor and print

A class diagram describes classes and their attributes, constructors and methods as well as the connections between classes. However a class diagram tells us nothing about the implementation of the constructors or the methods. Therefore a class diagram describes the structure of an object but not its functionality.

For example the method PrintPerson uses the class attributes name and age, but this cannot be seen from the class diagram.

Connections between classes

In a class diagram, the connections between classes are shown as arrows. The arrows also show the direction of the connection.

Below we have a class Book.

public class Book 
{
  private string name;
  private string publisher;

  // constructors and methods
}

Book

If we add a variable author, type of which is Person, in the source code the variable is declared like all other class variables.

public class Book 
{
  private string name;
  private string publisher;
  private Person author;

  // constructors and methods
}

In a class diagram variables which refer to other objects are not written with the rest of the class attributes, but are shown as connections between the classes. In the class diagram below we have the classes Person and Book, and the connection between them.

Book

Class methods are described just like we did before. Below we have added methods GetAuthors and AddAuthor to the Book class.

public class Book 
{
  private string name;
  private string publisher;
  private List<Person> authors;

  // constructor would be here


  public List<Person> GetAuthors() 
  {
      return this.authors;
  }

  public void AddAuthor(Person author) 
  {
    this.authors.Add(author);
  }
}

Book

If there is no arrowhead in a connection, both classes know about each other. Below is an example where a book knows about its author and a person knows about a book they have written.

Book

public class Person 
{
  private string name;
  private int age;
  private Book book;

  // ...
}
public class Book 
{
  private string name;
  private string publisher;
  private List<Person> authors;

  // ..
}

As you can see, by default – if there is no star on the connection – the connection is singular. The classes above are interesting, because a Person can only have one book.

If a person can have multiple books and a book can have multiple authors, we add a star to both ends of the connection:

Book

Now the person class would be as follows:


public class Person 
{
  private string name;
  private int age;
  private List<Book> books;

  // ...
}

Describing inheritance

In a class diagram inheritance is described by an arrow with a triangle head. The triangle points to the class being inherited from. In the below example the Motor inherits the class Part.

Engine

In the below example the class diagram describes the classes from the Product warehouse exercise. The ProductWarehouseWithHistory class inherits the ProductWarehouse class which in turn inherits the Warehouse class. ChangeHistory is a separate class connected to the ProductWarehouse. ProductWarehouseWithHistory knows about the ChangeHistory but the ChangeHistory does now know about the ProductWarehouseWithHistory.

Warehouse

Inheritance of abstract classes is described almost the same way as regular classes. However we add the description <<abstract>> above the name of the class. The name of the class and its abstract methods are also written in cursive.

Warehouse

Describing interfaces

In class diagrams interfaces are written <<interface>> NameOfTheInterface. Below we describe an interface IReadable.

public interface IReadable 
{

}

IReadable

Methods are described just like they are for a class.

Implementing an interface is shown as a dashed arrow with a triangle arrowhead. Below is described a situation where Book implements interface IReadable.

Book-IReadable

Class diagrams are an excellent way to describe a problem and a problem-domain to others. They are particularily useful when a programmer is designing a program with multiple classes.

Often a class diagram is drawn on a whiteboard or a big sheet of paper during the design phase. They should be though of as helpful tools to build a program, which can be thrown away afterwards. You should not use too much energy to think about the correctness and details of the modeling language. Class diagram should also be drawn in a suitable level of abstraction. For example if you have tens of classes, it might not be worth it to describe each attribute and each method of each class: getting a good overview of the program structure is the most important.

Tools of the trade

The class diagrams in the material have been drawn using yUML.me.

One very popular tool for drawing diagrams is yUML.me. You can draw any diagrams, but class diagrams are by far the most popular use for the tool. The strength of this tool is in the way the diagrams are represented: as code. When usually diagram tools are focused on drawing the tool, with yUML.me you can write your diagram as code. The downside is, that with large diagrams, you have to do quite much writing.

Another tool, which is more versatile but has bit of a learning curve, is Draw.io. With this tool, you can create any charts. This time the charts are not done by code, but by placing elements on a grid or canvas, or if you feel adventurous, drawing freehand.

Finally, LucidChart is a commercial tool for drawing all UML charts. You can also have a free trial for the software. It is a very versatile tool, and quite used in the industry.

You can find the exercises here