Notice
Recent Posts
Recent Comments
Link
투케이2K
386. (kotlin/코틀린) any 사용해 arrayList 배열 특정 아이템 요소가 특정 조건을 하나 라도 만족하는지 확인 수행 본문
Kotlin
386. (kotlin/코틀린) any 사용해 arrayList 배열 특정 아이템 요소가 특정 조건을 하나 라도 만족하는지 확인 수행
투케이2K 2023. 8. 20. 19:17[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Kotlin
[소스 코드]
// ---------------------------------------------------------------
// [로직 처리 실시]
// ---------------------------------------------------------------
try {
/**
* ---------------------------------
* [요약 설명]
* ---------------------------------
* 1. any : 컬렉션 요소 중 하나라도 조건을 만족할 때 true 를 반환 합니다
* ---------------------------------
* */
// [초기 변수 선언]
var array = ArrayList<M_User>()
// [데이터 삽입]
array.add(M_User("투케이", 30, true))
array.add(M_User("TWOK", 29, true))
array.add(M_User("2K", 31, true))
// [any 사용해 컬렉션 아이템들이 하나라도 조건을 만족하는지 확인]
var result_1 = array.any { it.age >= 30 }
var result_2 = array.any { it.age >= 40 }
// [로그 출력]
S_Log._W_("로그 출력", arrayOf(
result_1.toString(),
result_2.toString()
))
}
catch (e : Exception) {
S_Log._printStackTrace_(A_Intro@this, S_FinalMsg.LOG_BUG_STATE, null, e)
}
[결과 출력]
W///===========//: ================================================
I/: [LOG :: CLASS PLACE :: com.example.kotlinproject.A_Intro.onCreate(A_Intro.kt:169)]
I/: ----------------------------------------------------
I/: [LOG :: NOW TIME :: 2023-08-20 19:10:35 일요일]
I/: ----------------------------------------------------
I/: [LOG :: DESCRIPTION :: 로그 출력]
I/: ----------------------------------------------------
I/: [LOG :: true]
I/: ----------------------------------------------------
I/: [LOG :: false]
W///===========//: ================================================
반응형
'Kotlin' 카테고리의 다른 글
Comments