“Kotlin ternär” Code-Antworten

Kotlin ternär

if (a) b else c

println(if (true) "yes" else "no") // "yes"
println(if (false) "yes" else "no") // "no"
Promofo

kotlin sonst wenn

if (a > b) {
  // if
} else if (a == b) {
  // else if
} else {
  // else
}
just-saved-you-a-stackoverflow-visit

Ähnliche Antworten wie “Kotlin ternär”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen