컨트롤 흐름 명령문 Control Flow Statements
소스 파일 내부의 명령문은 일반적으로 나타난 순서대로 위에서 아래로 실행됩니다.
하지만 제어 흐름 명령문(Control flow statements)은, 특정 블록의 코드를 조건부로 실행할 수 있게 하면서, 의사결정 채택, 루핑 및 분기에 의하여 실행의 흐름을 종료시킵니다.
이 섹션에서는 자바 프로그래밍 언어가 지원하는, 의사-결정 명령문(if-then
, if-then-else
, switch
), 루프 명령문(for
, while
, do-while
), 그리고 분기 명령문 (break
,continue
, return
)을 설명합니다.
The statements inside your source files are generally executed from top to bottom, in the order that they appear. Control flow statements, however, break up the flow of execution by employing decision making, looping, and branching, enabling your program to conditionally execute particular blocks of code. This section describes the decision-making statements (if-then
, if-then-else
, switch
), the looping statements (for
, while
, do-while
), and the branching statements (break
,continue
, return
) supported by the Java programming language.
'Java 배우기' 카테고리의 다른 글
The switch Statement (0) | 2016.01.05 |
---|---|
The if-then and if-then-else Statements if-then 및 if-then-else 명령문 (0) | 2016.01.05 |
Questions and Exercises: Expressions, Statements, and Blocks (0) | 2016.01.05 |
Expressions, Statements, and Blocks (0) | 2016.01.05 |
Questions and Exercises: Operators (0) | 2016.01.05 |
댓글