Kotlin 필터 목록 예

981 단어 kotlinlistfilter
https://grokonez.com/kotlin/kotlin-list-filter-methods-example
Kotlin 필터 목록 예
이 강좌에서 4GrokonezKotlin 목록 필터링 방법을 보여 줍니다.
I.Kotlin 목록 필터
1. 필터(술어: (T) -> 부울 값): 목록
메서드 서명:
public inline fun <T> Iterable<T>.filter(predicate: (T) -> Boolean): List<T>
-> 주어진 [predicate]와 일치하는 요소만 포함하는 목록을 되돌려줍니다
실천:

val simpleList = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
var filterList = simpleList.filter { it%2 == 0 }
println(filterList)
/*
    [2, 4, 6, 8, 10]
*/
2. FilterTo(목적지: C, 술어: (T) -> 부울 값)
메서드 서명:
자세한 내용은 다음을 참조하십시오.
https://grokonez.com/kotlin/kotlin-list-filter-methods-example
Kotlin 필터 목록 예

좋은 웹페이지 즐겨찾기