개발언어

    Dart - 언어 시작하기 ( 반복문, 제어문)

    Dart - 언어 시작하기 ( 반복문, 제어문)

    Dart에서는 일반적인 반복, 제어문을 사용한다. 홈페이지서 설명하는 내용과 내가 이해하기 쉬운 코드로 다시 작성해보도록 하겠다. if and else for loops while and do-while loops break and continue switch and case assert (추가) try-catch and throw if and else Dart에서 지원되는 if 와 else 샘플이다. if (isRaining()) { you.bringRainCoat(); } else if (isSnowing()) { you.wearJacket(); } else { car.putTopDown(); } ▸ Javascript 와는 달리 boolean 값을 사용하며, 다른 값은 사용해서는 안됨. for lo..