Difficile
repeat est la fonction de la bibliothèque standard suivante :
inline fun repeat(times: Int, action: (Int) -> Unit)
Executes the given function action specified number of times.
A zero-based index of current iteration is passed as a parameter to action.
En examinant ces appels :
repeat(3) {
println("Hello")
}
repeat(3) { index ->
println("Hello with index $index")
}
repeat(3, index -> println("Hello with index $index") )
repeat(3, { println("Hello with index $it") })
on peut dire que :
Auteur: Équipe W3DStatut : PubliéeQuestion passée 534 fois
Modifier
1
Évaluations de la communautéPersonne n'a encore évalué cette question, soyez le premier !
Questions similairesPlus de questions sur Kotlin