Kotlin has three structural jump expressions:
All of these expressions can be used as part of larger expressions:
val s = person.name ?: return
The type of these expressions is the Nothing type.
Any expression in Kotlin may be marked with a label. Labels have the form of an identifier followed by the @
sign, for example: abc@
, fooBar@
are valid labels (see the grammar). To label an expression, we just put a label in front of it
loop@ for (i in 1..100) { // ... }
Now, we can qualify a break or a continue with a label:
loop@ for (i in 1..100) { for (j in 1..100) { if (...) break@loop } }
A break qualified with a label jumps to the execution point right after the loop marked with that label. A continue proceeds to the next iteration of that loop.
With function literals, local functions and object expression, functions can be nested in Kotlin. Qualified returns allow us to return from an outer function. The most important use case is returning from a lambda expression. Recall that when we write this:
//sampleStart fun foo() { listOf(1, 2, 3, 4, 5).forEach { if (it == 3) return // non-local return directly to the caller of foo() print(it) } println("this point is unreachable") } //sampleEnd fun main(args: Array<String>) { foo() }
The return-expression returns from the nearest enclosing function, i.e. foo
. (Note that such non-local returns are supported only for lambda expressions passed to inline functions.) If we need to return from a lambda expression, we have to label it and qualify the return:
//sampleStart fun foo() { listOf(1, 2, 3, 4, 5).forEach lit@{ if (it == 3) return@lit // local return to the caller of the lambda, i.e. the forEach loop print(it) } print(" done with explicit label") } //sampleEnd fun main(args: Array<String>) { foo() }
Now, it returns only from the lambda expression. Oftentimes it is more convenient to use implicit labels: such a label has the same name as the function to which the lambda is passed.
//sampleStart fun foo() { listOf(1, 2, 3, 4, 5).forEach { if (it == 3) return@forEach // local return to the caller of the lambda, i.e. the forEach loop print(it) } print(" done with implicit label") } //sampleEnd fun main(args: Array<String>) { foo() }
Alternatively, we can replace the lambda expression with an anonymous function. A return statement in an anonymous function will return from the anonymous function itself.
//sampleStart fun foo() { listOf(1, 2, 3, 4, 5).forEach(fun(value: Int) { if (value == 3) return // local return to the caller of the anonymous fun, i.e. the forEach loop print(value) }) print(" done with anonymous function") } //sampleEnd fun main(args: Array<String>) { foo() }
Note that the use of local returns in previous three examples is similar to the use of continue in regular loops. There is no direct equivalent for break, but it can be simulated by adding another nesting lambda and non-locally returning from it:
//sampleStart fun foo() { run loop@{ listOf(1, 2, 3, 4, 5).forEach { if (it == 3) return@loop // non-local return from the lambda passed to run print(it) } } print(" done with nested loop") } //sampleEnd fun main(args: Array<String>) { foo() }
When returning a value, the parser gives preference to the qualified return, i.e.
return@a 1
means "return 1
at label @a
" and not "return a labeled expression (@a 1)
".
© 2010–2018 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/docs/reference/returns.html