목록 컬렉션 예제 Kotlin Distinct () 방법
1134 단어 distinctcollectionkotlinlist
목록 컬렉션 예제 Kotlin Distinct () 방법
이 자습서에서 Grokonez 는 목록에서 수집한 Kotlin
distinct()
방법을 사용하는 방법을 보여 줍니다.실천
1. distinct() 방법
distinct()
방법은 서로 다른 요소만 포함된 목록을 되돌려주는 데 사용됩니다.메서드 서명:
public fun <T> Iterable<T>.distinct(): List<T>
val simpleList = listOf(1, 2, 3, 5, 3, 4, 1, 10, 13, 7, 10, 8)
println(simpleList)
// print on console
//->
/*
[1, 2, 3, 5, 3, 4, 1, 10, 13, 7, 10, 8]
*/
println(simpleList.distinct())
// print on console
// ->
/*
[1, 2, 3, 5, 4, 10, 13, 7, 8]
*/
https://grokonez.com/kotlin/kotlin-distinct-methods-list-collection
목록 컬렉션 예제 Kotlin Distinct () 방법
Reference
이 문제에 관하여(목록 컬렉션 예제 Kotlin Distinct () 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/loizenai/kotlin-distinct-methods-of-list-collection-example-3j1h텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)