투케이2K

310. (kotlin/코틀린) isNullOrEmpty 사용해 데이터 null 널 체크 수행 본문

Kotlin

310. (kotlin/코틀린) isNullOrEmpty 사용해 데이터 null 널 체크 수행

투케이2K 2023. 6. 15. 21:18

[개발 환경 설정]

개발 툴 : AndroidStudio

개발 언어 : Kotlin

 

[소스 코드]

        // ---------------------------------------------------------------
        // [로직 처리 실시]
        // ---------------------------------------------------------------
        try {

            /**
             * ---------------------------------------
             * [요약 설명]
             * ---------------------------------------
             * 1. isNullOrEmpty 함수는 CharSequence 가 null 이거나 empty 상황 인 경우 true 를 리턴 합니다
             * ---------------------------------------
             * 2. isNullOrEmpty : 데이터 값이 있는 경우 false / null 이거나 empty 인 경우 true
             * ---------------------------------------
             * */

            // [변수 선언]
            var oneData = "TWOK"
            var twoData = ""
            var threeData : String? = null


            // [isNullOrEmpty 사용해 널 체크 수행]
            var oneResult = oneData.isNullOrEmpty()
            var twoResult = twoData.isNullOrEmpty()
            var threeResult = threeData.isNullOrEmpty()
            
            
            // [결과 출력]
            S_Log._W_("로그 결과 출력", arrayOf(
                "oneResult :: " + oneResult.toString(),
                "twoResult :: " + twoResult.toString(),
                "threeResult :: " + threeResult.toString()
            ))

        }
        catch (e : Exception) {
            e.printStackTrace()
        }
 

[결과 출력]

 

W///===========//: ================================================
I/: [LOG :: CLASS PLACE :: com.example.kotlinproject.A_Intro.onCreate(A_Intro.kt:165)]
I/: ----------------------------------------------------
I/: [LOG :: DESCRIPTION :: 로그 결과 출력]
I/: ----------------------------------------------------
I/: [LOG :: oneResult :: false]
I/: ----------------------------------------------------
I/: [LOG :: twoResult :: true]
I/: ----------------------------------------------------
I/: [LOG :: threeResult :: true]
W///===========//: ================================================

 

반응형
Comments