Kotlin Control Flow

Kotlin continue

In this article, you will learn how to use continue construct and continue labels in Kotlin. Sometimes it is useful to force an early iteration of a loop. That is, you might want to continue running the loop but stop processing the remaining code in its body for this particular iteration. In such case we […]

Kotlin continue Read More »

Kotlin break

In this tutorial, you will learn to use break to terminate a loop. Also, you will learn about break labels. Kotlin break example The break is a loop control statement which is used to terminate the loop. Basically break statements are used in the situations when we are not sure about the actual number of

Kotlin break Read More »

Kotlin for Loop

The for loop in Kotlin iterates through anything that provides an iterator. In this article, you learn to create for loop (with the help of examples). Syntax The syntax of for loop in Kotlin is: for (item in collection) { // body of loop } In Kotlin, for loop is used to iterate through the following because all

Kotlin for Loop Read More »

Kotlin do-while Loop

In this article, you will learn about the do-while loop and how to create do-while loop in Kotlin programming. Loops in Kotlin are used when we want to execute a block of statements repeatedly until a specific condition is met(condition is false). Kotlin do-while Loop Kotlin’s do-while loop is an exit-control loop, which means unlike while loop, the do-while

Kotlin do-while Loop Read More »

Kotlin while Loop

In this article, you will learn about while loop and how to create while loop in Kotlin programming. Loops in Kotlin are used when we want to execute a block of statements repeatedly until a specific condition is met(condition is false). Kotlin While Loop The while loop executes the block of code as long as a specified

Kotlin while Loop Read More »

Kotlin when Expression

In this article, you will learn about when expression in Kotlin with the help of various examples. In Kotlin, when replaces the switch operator of other languages like Java, C, C++, etc. when matches its argument against all branches sequentially until some branch condition is satisfied. After the first match found, it reaches to end of the

Kotlin when Expression Read More »

Kotlin if Expression

In this article, you will learn to use if expression in Kotlin with the help of examples. There are different types of if expression in Kotlin: if-else expression if-else-if ladder expression nested if expression Traditional if Statement if statement The if statement checks the given condition. If the condition evaluates to be true then the

Kotlin if Expression Read More »