null1 [Kotlin] let 사용방법 및 주의 1. filter 의 결과물을 let 으로 1개 또는 여러개의 작업수행 val numbers = mutableListOf("one", "two", "three", "four", "five") numbers.map { it.length }.filter { it > 3 }.let { println(it) // and more function calls if needed } 위의 예시에서 만약 let{ } 블럭 안에 하나의 function 만을 포함하며 매개변수가 1개의 it일 경우 .let(::println) 으로 대체가능하다. 2. Not Null 체크 val str: String? = "Hello" //processNonNullString(str) // compilation error: str can b.. 2021. 3. 26. 이전 1 다음