Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Kotlin Quick Start Guide

You're reading from   Kotlin Quick Start Guide Core features to get you ready for developing applications

Arrow left icon
Product type Paperback
Published in Aug 2018
Publisher Packt
ISBN-13 9781789344189
Length 178 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Marko Devcic Marko Devcic
Author Profile Icon Marko Devcic
Marko Devcic
Arrow right icon
View More author details
Toc

Interfaces versus abstract classes


Now that we've covered both abstract classes and interfaces, you might be wondering what you should use when you are building your app. They look similar in some ways, but there are some important differences that we'll cover now, which will make it easier for you to choose which one to use.

We've already mentioned that Kotlin doesn't allow multiple inheritance. Take a look at this example:

abstract class InsureBase {
abstract fun insure()
}

abstract class CarBase {
abstract fun drive()
}

//compiler error, can't inherit from multiple classes
class InsurableCar: InsureBase(), CarBase() {
override fun insure() {
    }

override fun drive() {
    }
}

This won't compile, because we are trying to inherit from two classes.

Interfaces don't have that limitation; a class can implement as many interfaces as it wants. So, if we want to have a type that can be both driven and insured, we can have two interfaces that define that behavior and one concrete class that implements...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime
Banner background image