Kotlin break

In this tutorial you will learn about the Kotlin break and its application with practical example.

Kotlin break statement

In Kotlin, break statement inside any loop gives you way to break or terminate the execution of loop containing it, and transfers the execution to the next statement following the loop. It is almost always used with if..else construct.

Syntax:-

Example:-

In this above program, the variable count is initialized as 0. Then a while loop is executed as long as the variable count is less than 10.

Inside the while loop, the count variable is incremented by 1 with each iteration (count = count + 1).

Next, we have an if statement that checks the variable count is equal to 5, if it return TRUE causes loop to break or terminate.

Within the loop there is a println() statement that will execute with each iteration of the while loop until the loop breaks.

Then, there is a final println() statement outside of the while loop.

When we run this code, our output will be as follows –

Output:-

Kotlin Labeled break

The standard unlabeled break statement is used to terminates the nearest enclosing loop. In Kotlin, there is another form of break (labeled break) statement is used to terminate specified loop (can be outer loop). In Kotlin, Label is an identifier which is followed by @ sign, for example abc@, test@.

Example:-

Output:-

Here, when i == 2 expression is evaluated to true, break@outer is executed which terminates the loop marked with label outer@.

 

 

 

In this tutorial we have learn about the Kotlin break and its application with practical example. I hope you will like this tutorial.