[Kotlin] 코틀린 표준 라이브러리 let(), also(), apply(), run(), with() - (1)
https://thkim-study.tistory.com/7 - also() 함수 https://thkim-study.tistory.com/8 - apply(), run(), with() 함수 람다식을 사용하는 코틀린의 표준 라이브러리에서 let(), apply(), with(), also(), run() 등 여러가지 표준함수가 있다. 이 표준 함수를 활용하여 복잡한 코드를 단순화하고 효율적으로 만들 수 있다. 함수의 람다식 접근 방법 함수 이름 람다식 접근 방법 반환 방법 let it block 결과 also it it apply this this run this block 결과 with this Unit let() 함수 let() 함수는 함수를 호출하는 객체 T를 이어지는 block의 인자로 넘기고 ..
2020. 7. 22.