You are currently viewing a revision titled "Conditional Statement", saved on 2020-06-02 오후 7:37 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/swift-basic/lessons/%ec%a0%9c%ec%96%b4%ea%b5%ac%eb%ac%b8/topic/%ec%a1%b0%ea%b1%b4%eb%ac%b8/) |