Table of Contents

Scala - Class

About

Classes in Scala are:

Properties

Classes in Scala cannot have static members. You can use objects to achieve similar functionalities as with static members in Java.

Special kind of class: classes

In Scala there exists a special kind of class named case classes.

Signature

See Scala - Type