일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 공자명언
- recyclerview
- 이모지메모
- 공부집중
- Freesound
- 코틀린
- FSM
- ASMR
- bash
- 1인개발자
- 장자명언
- 이모지
- 소울칼리버6
- 오픈소스
- 벤자민플랭클린
- Firebase
- jetpack compose
- Flutter
- Android
- Streaming
- 명심보감
- Coroutine
- 명언모음
- 넷플릭스
- Linux
- DART
- androidx
- 좋은글필사하기
- 파이썬
- kotlin
Archives
- Today
- Total
Vintage appMaker의 Tech Blog
[kotlin] let, also의 활용 본문
- let, also는 kotlin에서 자주 사용되는 함수이다.
- ?. 연산자를 이용하여 null check를 편리하게 처리한다.
- 주로 지역변수의 사용과 if문을 최소화하여 무결점 코드를 만들기 위해 사용된다.
- let의 경우, 연산된 값으로 return이 가능하다.
- also의 경우, 파라메터로 받은 값을 그대로 return 한다.
// let은 연산된 값으로 return 할 수 있고
// also는 파라메터로 받은 값을 그대로 return 한다.
fun main(args: Array<String>) {
normalStyle()
funcionalStyle()
}
private fun normalStyle() {
val animals = "고양이 까치 개 쥐 독수리"
val lstAnimals = animals.split(" ")
println("-------------");
println("log 출력:")
lstAnimals.forEach { println(it) }
println("-------------");
val nIndx = lstAnimals.indexOf("독수리")
if (nIndx > 0) {
println("독수리는 ${nIndx} index에 있습니다.")
}
}
// 필요한 변수는 함수내부에서만 쓰고
// if문을 최소화 한다
// "변수와 if문을 최소화하여 예외를 없앤다". ← 함수형 프로그래밍적 사고
private fun funcionalStyle() {
var animals = "고양이 까치 개 쥐 독수리"
animals.split(" ")
.also { items ->
println("-------------");
println("log 출력:")
items.forEach { println(it) }
println("-------------");
}
.let { items ->
var indx = items.indexOf("독수리")
if (indx < 0) null else indx
}
?.let { println("독수리는 ${it} index에 있습니다.") }
}
결과
-------------
log 출력:
고양이
까치
개
쥐
독수리
-------------
독수리는 4 index에 있습니다.
-------------
log 출력:
고양이
까치
개
쥐
독수리
-------------
독수리는 4 index에 있습니다.
📢 online IDE - web으로 코드실행
'Source code or Tip > Android(Java, Kotlin)' 카테고리의 다른 글
[kotlin] Quick coroutine(코루틴) 예제 (0) | 2021.03.11 |
---|---|
[링크모음] Kotlin coroutine 설명글 모음 (0) | 2021.02.21 |
[kotlin] infix 함수 예제 (0) | 2021.02.05 |
Android 8.0 이상에서 http 정책(Cleartext http 에러, class not found) (0) | 2021.01.27 |
[코틀린] 확장 프로퍼티 (0) | 2021.01.19 |
Comments