코틀린 case

ALL

Kotlin 조건문 when 사용 방법 예제

Kotlin 에는 when이라는 조건문이 있습니다. 자바와 비교하면 switch문과 비슷합니다. 예제를 통해서 사용 방법을 알아보도록 하겠습니다. 자바 switch문으로 작성한 예제입니다. public class test { public static void fruit(String value) { switch (value) { case "사과": System.out.println("Apple!"); break; case "바나나": System.out.println("Banana"); break; default: System.out...