투케이2K

345. (kotlin/코틀린) ArrayList forEach 사용해 배열을 순회 하면서 특정 모델 (model) 객체 데이터 값 모두 변경 수행 본문

Kotlin

345. (kotlin/코틀린) ArrayList forEach 사용해 배열을 순회 하면서 특정 모델 (model) 객체 데이터 값 모두 변경 수행

투케이2K 2023. 7. 14. 20:29

[개발 환경 설정]

개발 툴 : AndroidStudio

개발 언어 : Kotlin

 

[소스 코드]

        // ---------------------------------------------------------------
        // [로직 처리 실시]
        // ---------------------------------------------------------------
        try {
            
            // [1]. ArrayList 배열 선언 및 데이터 삽입
            var originList = ArrayList<M_User>()
            originList.add(M_User("투케이", 29, true))
            originList.add(M_User("2K", 28, true))


            // [2]. forEach 사용해서 배열을 순회하면서 특정 데이터 값 모두 변경 수행
            originList.forEach { it.age = it.age+1 }


            // [3]. 로그 결과 출력
            S_Log._D_("로그 출력 수행", arrayOf(
                originList.toString()
            ))

        }
        catch (e : Exception) {
            S_Log._printStackTrace_(A_Intro@this, "예외 상황 발생", null, e)
        }
 

[결과 출력]

 

D///===========//: ================================================
I/: [LOG :: CLASS PLACE :: com.example.kotlinproject.A_Intro.onCreate(A_Intro.kt:160)]
I/: ----------------------------------------------------
I/: [LOG :: DESCRIPTION :: 로그 출력 수행]
I/: ----------------------------------------------------
I/: [LOG :: [M_User(name=투케이, age=30, sex=true), M_User(name=2K, age=29, sex=true)]]
D///===========//: ================================================

 

반응형
Comments