You are currently viewing a revision titled "Conditional Statement", saved on 2020-04-03 오전 10:23 by man | |
---|---|
제목 | 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) 언어](/docs/swift)의 대표적인 조건구문으로 [if 구문](/docs/if-statement)과 [switch 구문](/docs/switch-statement)이 있다.
A control flow statement that checks whether a condition is true before executing a piece of code. |