Book Image

Kotlin Quick Start Guide

By : Marko Devcic
Book Image

Kotlin Quick Start Guide

By: Marko Devcic

Overview of this book

Kotlin is a general purpose, object-oriented language that primarily targets the JVM and Android. Intended as a better alternative to Java, its main goals are high interoperability with Java and increased developer productivity. Kotlin is still a new language and this book will help you to learn the core Kotlin features and get you ready for developing applications with Kotlin. This book covers Kotlin features in detail and explains them with practical code examples.You will learn how to set up the environment and take your frst steps with Kotlin and its syntax. We will cover the basics of the language, including functions, variables, and basic data types. With the basics covered, the next chapters show how functions are first-class citizens in Kotlin and deal with the object-oriented side of Kotlin. You will move on to more advanced features of Kotlin. You will explore Kotlin's Standard Library and learn how to work with the Collections API. The book finishes by putting Kotlin in to practice, showing how to build a desktop app. By the end of this book, you will be confident enough to use Kotlin for your next project.
Table of Contents (15 chapters)
Title Page
Copyright and Credits
Dedication
Packt Upsell
Contributors
Preface
Index

Class delegation


Delegation is a design pattern that combines object composition and inheritance. Basically, it is a mechanism where one object delegates actions to another. To see it in action, let's take a look how we would achieve delegation in Java:

public interface Drivable {
void drive();
}

public class Car implements Drivable {

@Override
public void drive() {
System.out.println("Driving a car");
}
}

public class Vehicle implements Drivable {
private Car car;

public Vehicle(Car car) {
this.car = car;
}

@Override
public void drive() {
car.drive();
}
}

public void driveVehicle() {
Car car = new Car();
Vehicle vehicle = new Vehicle(car);
vehicle.drive(); // with delegation, car.drive() get's called
}

In this example, we have the Drivable interface and two classes that implement it. The Vehicle class doesn't have its own drive functionality; rather, it delegates the drive function to the Car object.

If we were to write the same example in Kotlin, it would look like this:

interface Drivable...