학습/CS
If I can use if, when to use when
Kotlin 공식문서에서도 if 대신 when을 사용할 것을 권장하고 있습니다. 그런데 왜 if 대신 when을 사용해야 하는지 아시나요? Prefer using when if there are three or more options. https://kotlinlang.org/docs/coding-conventions.html#if-versus-when Coding conventions | Kotlin kotlinlang.org Kotlin의 when은 Java의 switch 문으로 변환된다. Kotlin에서 when을 사용하는 코드는 Java의 switch 문으로 변환됩니다. 직접 확인해봅시다. 아래와 같이 사용자가 입력한 값에 따라 Grade를 반환하는 함수가 있습니다. enum class Grade..