DEV Community

Daniele Bottillo
Daniele Bottillo

Posted on

Kotlin by examples: Class and Properties

I've been using Kotlin in the last few months and I'm very pleased with it! For people who don't know it, it's a language built by JetBrains (the company behind IntelliJ hence Android Studio) which compiles to the same JVM bytecode of Java.

It's a very modern and nice language which can be used along side Java files so doesn't require to convert an entire project.

In this blog post I'm gonna show you how to write in Kotlin what you usually write in an Android/Java project and why writing code with Kotlin is faster and nicer :=) .

Let's start with a standard definition of a class in Java:

public abstract class Car {
    private String name;
    Car(String name){
        this.name = name;
    }
}
public class Ford extends Car{
    private String model;
    private String color;

    Ford(String model, String color){
        super("Ford");
        this.model = model;
        this.color = color;
    }
}
Ford focus = new Ford("Focus", "blue")
Enter fullscreen mode Exit fullscreen mode

Pretty standard Java classes, we have a base abstract class called ‘Car' and a proper class ‘Ford' which extends Car.
In Kotlin the same code would be:

abstract class Car(val name: String)

class Ford(val model: String, val color: String) : Car("Ford")

val focus = Ford("Focus", "Blue")
Enter fullscreen mode Exit fullscreen mode

So the 15 java lines of code are just 3! In Kotlin you define constructors inline in the class definition and you have getters and setters for free based on the visibility of the fields (more on this later).
The ‘extends' keyword of Java is replaced by just a ‘:' and you can also inline the constructor of the abstract class (in this case: Car(“Ford”) ).

Ford focus = new Ford("Focus", "blue")
focus.getName()    -> java way
val focus = Ford("Focus", "Blue")
focus.name         -> kotlin way
Enter fullscreen mode Exit fullscreen mode

Constructors and also methods support default values, something that Java can't do:

class Ford(val model: String, val color: String = "Blue") : Car("Ford")
val focus = Ford("Focus")
println(focus.color)          -> prints Blue
Enter fullscreen mode Exit fullscreen mode

It's also possible to have named field in the creation of an object, which solve one of the main problem of Java in my opinion: to understand the meaning of the fields used to create a new object.
So let's imagine a Book class in Java with one parameter as a string:

Book book = new Book("George")
Enter fullscreen mode Exit fullscreen mode

What is “George ? is the author? the name of the book? the owner of the book? In Kotlin you can do this:

Book book = new Book("George")     -> Java
val book = Book("George")          -> Kotlin like Java
val book = Book(author="George")   -> more expressive way
Enter fullscreen mode Exit fullscreen mode

Definitely better!

In Kotlin you can add the keyword ‘data' at the beginning of a class, if you do, the compiler will add these methods for “free”:

  • equals()/hashCode() pair,
  • toString() of the form "Ford(name=Ford, model=Focus)",
  • componentN()
  • copy()

So with just one keyword you are getting a lot of code for free! I want to show you what componentN() functions means because it's something that you can't do in Java. The idea is that you can destruct the declaration of your class:

val focus = Ford("Focus", "Blue")
val (model, color) = focus
println("$model and $color")   -> this will print: "Focus and Blue"
Enter fullscreen mode Exit fullscreen mode

Also the copy method is very useful to create another object from a previous one:

val focus = Ford("Focus", "Blue")
val yellowFocus = focus.copy(color = "Yellow")
Enter fullscreen mode Exit fullscreen mode

In Kotlin a property can be var or val. You can think about val as a final field in Java (so it can't be modified) and var a mutable property which cannot be null, if you want to have a mutable nullable property you need to define with “? expression:

var mutable = "mutable"
val immutable = "immutable"
mutable = "changed"                    -> 'it compiles'
immutable = "changed"                  -> 'doesn't compile'
var mutableCanBeNull: String? = null   -> 'can be null'
Enter fullscreen mode Exit fullscreen mode

You can safely access a property that can be null with the keyword ‘?':

var mutable = "mutable"
println(mutable.legnth)                 -> 'print 7'
var mutableCanBeNull: String? = null
println(mutableCanBeNull?.length)       -> 'does not crash! print null'
Enter fullscreen mode Exit fullscreen mode

In Android most of the time you need to wait callbacks from the framework to create objects, which means they need to be defined null until the framework is ready and then every time you use those objects you need to check if it's not null.

Kotlin solves this problem with the lateinit keyword for var properties:

lateinit var name: String     -> 'without lateinit it does not compile'
name = "Tom"
println(name.length)
Enter fullscreen mode Exit fullscreen mode

Please note that you don't need to do ‘name?' but just “name' because the lateinit keyword tells the compiler that you are gonna fill the property before using it!

That's it for now! In the next post I will talk about function definitions, return types, callback and static fields.

Top comments (2)

Collapse
 
leolas95 profile image
Leonardo Guedez

Nice article! Been considering learning Kotlin or Scala for Android recently, to try something different.

Also, I don't know if it's a typo, but in the example:

You can safely access a property that can be null with the keyword ‘?’:

var mutable = "mutable"
println(mutable.legnth)                 -> 'print 7'
var mutableCanBeNull: String? = null
println(mutableNull?.length)            -> 'does not crash! print null'
Enter fullscreen mode Exit fullscreen mode

The last line shouldn't be mutableCanBeNull? instead of mutableNull? ?

Collapse
 
dbottillo profile image
Daniele Bottillo

Hi Leonardo, thanks for your message! yes it was, I've updated the post...!