You are currently viewing a revision titled "Conditional Statement", saved on 2020-06-15 오후 10:11 by 야곰 | |
---|---|
제목 | Conditional Statement |
내용 | 조건구문(조건문). 특정 코드를 실행하기 전 조건이 참인지 확인하는 제어 구문.
즉, 코드를 실행하기 전 특정 조건이 성립하지 않으면 그 코드를 실행하지 않도록 제어하는 구문.
스위프트(Swift) 언어의 대표적인 조건구문으로 if 구문과 switch 구문이 있다.
A control flow statement that checks whether a condition is true before executing a piece of code.
관련 강좌
* 조건문
* 값을 비교해보기 |
요약글 | |
Markdown content | 조건구문(조건문). 특정 코드를 실행하기 전 조건이 참인지 확인하는 제어 구문.
즉, 코드를 실행하기 전 특정 조건이 성립하지 않으면 그 코드를 실행하지 않도록 제어하는 구문.
스위프트(Swift) 언어의 대표적인 조건구문으로 if 구문과 switch 구문이 있다.
A control flow statement that checks whether a condition is true before executing a piece of code.
관련 강좌
* 조건문
* [값을 비교해보기](https://yagom.net/courses/%ec%99%95%ec%b4%88%eb%b3%b4%eb%a5%bc-%ec%9c%84%ed%95%9c-ios-%ec%95%b1%ea%b0%9c%eb%b0%9c/lessons/5-%ec%bd%94%eb%93%9c%eb%a1%9c-%ea%b8%b0%eb%8a%a5-%ea%b5%ac%ed%98%84%ed%95%98%ea%b8%b0/topic/5-3-%ea%b0%92%ec%9d%84-%eb%b9%84%ea%b5%90%ed%95%b4%eb%b3%b4%ea%b8%b0/) |