Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
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 31
Archives
Today
Total
관리 메뉴

개발자되기 프로젝트

[Kotlin] if-else, when문 본문

카테고리 없음

[Kotlin] if-else, when문

Seung__ 2022. 2. 12. 16:30

if-else와 when 문

if (condition-is-true) {
    execute-this-code
} else if (condition-is-true) {
    execute-this-code
} else {
    execute-this-code
}

 

when (variable) {
    matches-value > execute-this-code
    matches-value > execute-this-code
    ...
}

 

 

Comments