Introduction

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

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