Escrevi isso de forma semelhante à resposta @Rhusfer . Caso você tenha um grupo de se EditText
deseja concatenar seus valores, você pode escrever:
listOf(edit_1, edit_2, edit_3, edit_4).joinToString(separator = "") { it.text.toString() }
Se você deseja concatenar Map
, use isto:
map.entries.joinToString(separator = ", ")
Para concatenar Bundle
, use
bundle.keySet().joinToString(", ") { key -> "$key=${bundle[key]}" }
Ele classifica as chaves em ordem alfabética.
Exemplo:
val map: MutableMap<String, Any> = mutableMapOf("price" to 20.5)
map += "arrange" to 0
map += "title" to "Night cream"
println(map.entries.joinToString(separator = ", "))
val bundle = bundleOf("price" to 20.5)
bundle.putAll(bundleOf("arrange" to 0))
bundle.putAll(bundleOf("title" to "Night cream"))
val bundleString =
bundle.keySet().joinToString(", ") { key -> "$key=${bundle[key]}" }
println(bundleString)
a.plus(b)
oua + b
e o mesmo bytecode é gerado