Introduction

What is Kotlin Abstract Class?

Kotlin abstract classes can’t be instantiated directly and are intended to be subclassed by other classes. They can have both abstract and concrete methods and also have instance variables. The abstract methods declared in an abstract class don’t have any implementation, and they must be implemented by any subclass that extends the abstract class.

See forum comments
Download course materials from Github
Previous: Quiz: Create Data Classes Next: Instruction