Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Hands-On Object-Oriented Programming with Kotlin
Hands-On Object-Oriented Programming with Kotlin

Hands-On Object-Oriented Programming with Kotlin: Build robust software with reusable code using OOP principles and design patterns in Kotlin

Arrow left icon
Profile Icon Khan Profile Icon Igor Kucherenko
Arrow right icon
€18.99 per month
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.5 (2 Ratings)
Paperback Oct 2018 370 pages 1st Edition
eBook
€20.98 €29.99
Paperback
€36.99
Subscription
Free Trial
Renews at €18.99p/m
Arrow left icon
Profile Icon Khan Profile Icon Igor Kucherenko
Arrow right icon
€18.99 per month
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.5 (2 Ratings)
Paperback Oct 2018 370 pages 1st Edition
eBook
€20.98 €29.99
Paperback
€36.99
Subscription
Free Trial
Renews at €18.99p/m
eBook
€20.98 €29.99
Paperback
€36.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Hands-On Object-Oriented Programming with Kotlin

Introduction to Object-Oriented Programming

Object-oriented programming is one of the most famous and practical software-development techniques. Traditional procedural programming is tedious and prone to error, especially when it comes to the development of large and complex applications. In this chapter, we will provide a quick introduction to object-oriented programming and its benefits. We will also try to understand why the object-oriented approach is easy to grasp and how it is similar to human nature. We will learn about classes, objects, and constructor declarations. By the end of this chapter, we will be familiar with properties, behaviors, function overloading, the concept of data classes, and how data classes can help to improve application development.

The following topics will be covered in this chapter:

  • Object-oriented programming
  • Syntax of class declaration
  • The...

Technical requirements

Object-oriented programming?

In our day-to-day life, we deal with a number of different objects. Some of these objects talk to us, some move on the road, and some fly in the sky. We naturally observe everything about the characteristics and behaviors of these objects. As an example, let's think about an object with the following properties: it has a couple of doors, four wheels, one steering wheel, brakes, gears, and an engine, it moves on the road, stops when the brakes are applied, and turns left or right when the steering wheel moves. Based on these attributes and behaviors, we can carry out a classification of this object – it belongs to a class called Car. In programming, the technique to design and build an application by focusing on objects that interact with each other is known as object-oriented programming. In the object-oriented paradigm, class and object...

Benefits of object-oriented programming

Old programming languages, such as Assembly or FORTRAN, are not object-oriented languages. Instead, these are procedural programming languages, languages in which a program is written in one long procedure. The data and the logic are coupled together in one place and a program contains a list of routines or subroutines to instruct the computer step by step. This approach is also known as a top-down approach, because instructions are executed one after the other. Procedural programming comes with a number of drawbacks:

  • There is no information-hiding mechanism; data is exposed to the whole system
  • Data and functions are stored in separate memory locations
  • It is difficult to map real-world objects
  • The code cannot be reused; each module or instruction set requires its own tightly coupled routine
  • The code cannot be extended; it is difficult to...

Classes in Kotlin

In Kotlin, a class can be defined with the class keyword. Let's take a look at how to declare a class and how to add attributes to it. In Kotlin, a class can be declared as follows:

class Person 

Compared to other programming languages, creating a class in Kotlin is very easy. All we need to do is open our IDE and create a person class with three attributes—name, age, and height. The name is a variable of the String type, age is a variable of the Integer type, and height is a variable of the Double type:

class Person {
var name: String
var age : Int
var height : Double
}

We have now declared a Person class with three attributes enclosed in brackets. After writing this code, we will notice that compiler has immediately thrown a Property not initialized error, because we haven't decided that how these properties will be initialized. Let...

Properties – first-class citizens

Each class contains different attributes. The Person class, for example, contains the name, age, and height attributes. When a Person class is declared in Java or another programming language, these attributes are called fields of the class. When these fields are accessed by their corresponding getter and setter methods, they are called properties. To understand this concept in detail, create a Person class in Java, as follows:

public class Person {

String name;
int age;
double height;

Person(String n, int a, double h){
name = n;
age = a;
height = h;
}

public double getHeight() {
return height;
}

public void setHeight(double height) {
this.height = height;
}

public int getAge() {
return age;
}

public void setAge(int age) {
this.age = age;
}

public...

Constructing a class with a constructor

When an object is created, all class members have to have an initial value. We can either initialize a property directly or the initial values can be provided by a constructor. A constructor is a special type of function that is used to initialize the properties of the class.

A constructor is invoked when the object is created, or, more specifically, when the space is allocated in the memory. This special function has two important characteristics:

  • Constructors can be declared with the constructor keyword
  • Constructors don't contain any return types, not even Units

In this section, we will learn about all of the different kinds of constructors that are provided by Kotlin. Let's start with the default constructor.

Default constructor...

What are data classes?

During the application's development, classes are used quite often as a data-holder, not to carry out complex tasks. These classes only contain properties for reading and writing purposes. The person class is a simple example of a class used as a data-holder. If the sole responsibility of the class is to handle data, programmers may want the class to be able to carry out additional functionalities:

  • The data should be in a well-presented format
  • We should be able to compare object properties
  • We should be able to clone existing objects

All these functionalities can be written by the programmer. Alternatively, an advanced IDE could generate this code automatically. Either way, the project would be filled with boilerplate code. Just as it automatically generates getters and setters, Kotlin assumes the responsibility for generating all of these functions...

Classes and functions

In this section, we will have a quick look at how behaviors and functions can be implemented. We will continue with our Person class, which has three behaviors—speak, eat, and walk.

As we know, class behaviors are represented by functions. We can declare a function within the class body:

  1. Create a class with a primary constructor and add the speak() function by using fun keyword. When a function is declared in the class body, it becomes class behavior:
class Person (val name: String, var age : Int , var height : Double) {
fun speak() {
println("My name is $name , i am $age years old and I am $height feet tall")
}
}

fun main(args: Array<String>) {
val abid = Person("Abid", 40, 6.0)
abid.speak()
}
  1. Create an object of the Person class and call the speak function using the . operator. Execute this program and...

Summary

In this chapter, we learned about object-oriented programming and why it is better than procedural programming. We started the chapter by exploring classes and learning how to declare them. We also discussed the properties and behavior of classes, and why properties are known as first-class citizens. Then, we had a detailed discussion about data classes, constructors, and how parameterized constructors help us to write clean code. In the last section of this chapter, we covered functions and function overloading. In the next chapter, we will look at some more advanced topics and their implementations.

Questions

  1. What is the difference between a class and an object?
  2. What is an attribute and the behavior of the class?
  3. What is a constructor and how many types of constructors are available?
  4. What is function overloading?
  5. What are data classes and why are they beneficial?

Further reading

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • A practical guide to understand objects and classes in Kotlin
  • Learn to write asynchronous, non-blocking codes with Kotlin coroutines
  • Explore Encapsulation, Inheritance, Polymorphism, and Abstraction in Kotlin

Description

Kotlin is an object-oriented programming language. The book is based on the latest version of Kotlin. The book provides you with a thorough understanding of programming concepts, object-oriented programming techniques, and design patterns. It includes numerous examples, explanation of concepts and keynotes. Where possible, examples and programming exercises are included. The main purpose of the book is to provide a comprehensive coverage of Kotlin features such as classes, data classes, and inheritance. It also provides a good understanding of design pattern and how Kotlin syntax works with object-oriented techniques. You will also gain familiarity with syntax in this book by writing labeled for loop and when as an expression. An introduction to the advanced concepts such as sealed classes and package level functions and coroutines is provided and we will also learn how these concepts can make the software development easy. Supported libraries for serialization, regular expression and testing are also covered in this book. By the end of the book, you would have learnt building robust and maintainable software with object oriented design patterns in Kotlin.

Who is this book for?

This book is for programmers and developers who wish to learn Object-oriented programming principles and apply them to build robust and scalable applications. Basic knowledge in Kotlin programming is assumed

What you will learn

  • Get an overview of the Kotlin programming language
  • Discover Object-oriented programming techniques in Kotlin
  • Understand Object-oriented design patterns
  • Uncover multithreading by Kotlin way
  • Understand about arrays and collections
  • Understand the importance of object-oriented design patterns
  • Understand about exception handling and testing in OOP with Kotlin

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Oct 31, 2018
Length: 370 pages
Edition : 1st
Language : English
ISBN-13 : 9781789617726
Category :
Languages :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Oct 31, 2018
Length: 370 pages
Edition : 1st
Language : English
ISBN-13 : 9781789617726
Category :
Languages :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 103.97
Hands-On Object-Oriented Programming with Kotlin
€36.99
Learning Concurrency in Kotlin
€36.99
Hands-On Data Structures and Algorithms with Kotlin
€29.99
Total 103.97 Stars icon

Table of Contents

13 Chapters
Getting Started with Kotlin Chevron down icon Chevron up icon
Introduction to Object-Oriented Programming Chevron down icon Chevron up icon
The Four Pillars of Object-Oriented Programming Chevron down icon Chevron up icon
Classes - Advanced Concepts Chevron down icon Chevron up icon
Data Collection, Iterators, and Filters Chevron down icon Chevron up icon
Object-Oriented Patterns in Kotlin Chevron down icon Chevron up icon
Coroutines - a Lightweight Thread? Chevron down icon Chevron up icon
Interoperability Chevron down icon Chevron up icon
Regular Expression and Serialization in Kotlin Chevron down icon Chevron up icon
Exception Handling Chevron down icon Chevron up icon
Testing in Object-Oriented Programming with Kotlin Chevron down icon Chevron up icon
Assessments Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.5
(2 Ratings)
5 star 0%
4 star 0%
3 star 50%
2 star 50%
1 star 0%
BA Jul 17, 2019
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
I had previous experience with Kotlin and wanted to get a more in depth view of the landguage. However the book doesn't go very deep at all, it goes over many subjects quite briefly.If you're an absolute Kotlin beginner then it's good I guess, if not you might learn something, but don't expect a good return for the invested time.
Amazon Verified review Amazon
AntoineLyon Apr 18, 2022
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
Même si la structure est intéressante, ce livre a un énorme défaut, il est plein de fautes de frappe ou d'erreurs de code. Quand on traite de code informatique, ce sont des erreurs inacceptables; on a l'impression que ce n'est pas un informaticien qui a relu. Ces erreurs changent parfois le sens du code, des inversions de paramètres, des méthodes inexistantes, et j'en passe. Si on a un background de développeur, on arrive à corriger par soi même, mais je ne recommande pas ce livre comme méthode d'apprentissage au langage Kotlin.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.