“Kotlin -Variable in String” Code-Antworten

Kotlin -Variable in String

//Kotlin variable in string

//variables go in a ${} in a string, example
println("Happy ${age}th birdthday, ${name}!"
gradient

Variablen in Strings Kotlin

// Use the $ sign to get the variable value inside a string:

//Example 1:
println("$days days and $hours hours to go!")
  
//You can also use {} to contain expressions:
println("${days*24} hours to go!")
println("${myList}")
Nani

Ähnliche Antworten wie “Kotlin -Variable in String”

Fragen ähnlich wie “Kotlin -Variable in String”

Weitere verwandte Antworten zu “Kotlin -Variable in String” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen