picKotlin

Kotlin From Scratch: Nullability, Loops, and Conditions

Kotlin is a modern programming language that compiles to Java bytecode. It is free and open source, and promises to make coding for Android even more fun.  

In the previous article, you learned about variables, simple types, arrays, comments and type inference in Kotlin. In this tutorial, we’ll continue to learn the language by looking at nullability, loops, and conditions in Kotlin.

1. Nullability

If you’re an Android coder, you must have come across the infamous NullPointerException errors in your app. These happen whenever you try to call a method or read a property of an object reference which is null. The good news is that Kotlin can help us avoid these kind of errors we get because its a null safe language. That means variables can’t have the value null unless you explicitly declare their type to be nullable. In other words, by default, types cannot be null. Let’s see how this feature of Kotlin can help us avoid errors in our code. 

As you can see above, if we assign null to the name variable, the compiler will complain. For the compiler to allow the assignment, declare name as a nullable by adding ? after the type.

Note that if ? is inserted after any type name, we have explicitly instructed the compiler that the value of the type can either store an object reference or can be null—it is nullable. Here we did so with the String type, it works the same with Int?, Byte?Long?, MyClass?, and so on. 

The safe call operator: ?.

Let’s learn more about null-safety works in Kotlin with an operator called the safe call operator ?..

The code above won’t compile because Kotlin is a null-safe language. The variable name is assigned the value null. Now, invoking the property length on that variable would trigger a NullPointerException error in Java. But the Kotlin compiler won’t allow the invocation of this property because the variable could be null. The compiler won’t allow us to do something that could generate a NullPointerException!

Now by adding the safe call operator ?. to the variable before invoking the property, we have explicitly instructed the compiler to invoke the property only if the value isn’t null. If the value is null, the compiler will use the string "null" as the value for us. This works also for methods and not just properties. 

When you call a method of a nullable, the return type will also be nullable. So, for example the return type of the v?.length expression when v is nullable will be Int?

To bypass nullability checking by the Kotlin compiler, we can replace the ?. operator with !!.. This is not recommended though, because of the high probability for getting NullPointerException errors if used.  

The Elvis operator: ?:

This operator ?: is called the Elvis operator (because its shape looks like Elvis’ head). It is used to provide an alternative value for the variable if it is null.  

Here, the compiler assigned the string "No name" to the variable name, because the first value username is null. If the first value was not null, then that value would be assigned to the variable instead.

2. Loops

Kotlin has while, do-while, and for loops. 

The while Loop

A repetition statement allows us to specify that code should repeat an action while some condition remains true.

So in Kotlin, using the while loop is same as in other languages such as Java.

As long as the condition is true, the code inside the curly braces or the loop’s body will be executed. If the condition is false, then the code will not be executed. In our example above, once the fuel variable becomes less than 5 litres, the condition becomes false and then the loop terminates. In other words, driveMeAroundLagos() method execution stops. 

The do..while Loop

Kotlin also has the do..while loop construct. 

This is similar to the while statement. In the while loop, the program tests the loop condition at the beginning of the loop before executing the loop’s body. If the condition is false, the body is not executed. But the do-while loop tests the condition after executing the loop’s body. This means that the body is executed at least once.

The for Loop

A for loop is a repetition statement that enables us to iterate over objects while a given condition is true.

In Kotlin, the for loop construct works with iteration over ranges, collections, or other iterables (I’ll explain more about these in the next post). For loops work together with the in operator, which is used to ascertain whether a value is present in a given range.

In the code above, we are iterating through a closed range 1 to 5 and print out each value in the range. 

Iterating Over an Index Array

We can use the withIndex() function or the indices property on an array to iterate over an array where we need the index for each element.

Using withIndex() Function

We can iterate over an array to access each element’s index by calling the withIndex() function on the array, because the withIndex() function returns an iterable of IndexedValue type for each element. This lets us access both the index and value for each element from it.

The code above will print out the result below:

Using the indices Property

Moreover, we can use the indices property on the array. This will return just the range of valid indices for the array.

The above code will produce the same result as the previous example. You can see here also that we can use the index to access an array element, similarly to other programming languages like Java.

3. Conditions

Kotlin has three types of condition statements – the if, if..else, and when statements. 

The if Statement

An if statement runs some code if a condition is true, or simply skips it, if the condition is false. Nothing special here, if statements work similarly to the way they do in most other programming languages, including Java. 

 We can also check whether a variable is of a particular type using the is keyword. 

The if..else statement

The if..else performs one action if the condition is true and performs a different action if the condition is false.

One major feature that distinguishes the if..else statement in Kotlin from other programming languages such as Java, is the ability to assign a variable from the returned value of the  if..else statement. This is possible because an if..else statement can be used not just as a statement, but also as an expression in Kotlin.

In the code above, we assigned the result variable with a String object based on the condition of the if..else statement. Be aware that this will return only the last statement in a particular condition block and also that you can’t use an if without an else as an expression. 

The when expression

Kotlin introduced the when construct as a replacement to the familiar switch statement we have in different programming languages such as C++, Java and so on. when is more concise and has more powerful features than the switch statement you might be familiar with. 

The when statement performs different actions based on the possible values of a constant of type Int, String, Byte or Short or any other object. 

In the code above, we passed the function guessTheNumber() a number parameter (we’ll discuss functions in Kotlin in a later post). The when expression then checks if any of the branches match the value of number and then executes the action on that branch. If none of the branches was a match, the else branch is executed. 

Another variant of the when expression does not require any argument, like in the example below.

If we want to execute more than one action on a branch, we need to wrap the actions in curly braces {}.

Moreover, we can combine test values in a single branch.

Here the first branch is executed because we are testing for a value of either 1 or 2.

Conclusion

In this tutorial, you learned about nullability, loops, and conditions in the Kotlin programming language. In the next tutorial in the Kotlin From Scratch series, you’ll learn about the ranges and collections API in Kotlin. See you soon!

To learn more about the Kotlin language, I recommend visiting the Kotlin documentation. Or check out some of our other Kotlin tutorials here on Envato Tuts+!

  • Android SDK
    Quick Tip: Write Cleaner Code With Kotlin SAM Conversions
    Ashraff Hathibelagal
  • Android Studio
    Coding Functional Android Apps in Kotlin: Getting Started
    Jessica Thornsby
  • Android SDK
    Java vs. Kotlin: Should You Be Using Kotlin for Android Development?
    Jessica Thornsby

Leave a Comment

Scroll to Top