4520 shaares
1 résultat
taggé
when
Pour @Animal, voici l'opérateur when
en deux exemples tirés de la doc officielle (cf. lien principal).
Le simple :
when (x) {
0, 1 -> print("x == 0 or x == 1")
else -> print("otherwise")
}
Le compliqué :
when (x) {
in 1..10 -> print("x is in the range")
in validNumbers -> print("x is valid")
!in 10..20 -> print("x is outside the range")
else -> print("none of the above")
}