본문 바로가기
Java 배우기

Control Flow Statements 컨트롤 흐름 명령문

by 노화방지 Anti-aging Hairstyle 2016. 1. 5.
반응형


소스 파일 내부의 명령문은 일반적으로 나타난 순서대로 위에서 아래로 실행됩니다.
하지만 제어 흐름 명령문(Control flow statements)은, 특정 블록의 코드를 조건부로 실행할 수 있게 하면서, 의사결정 채택, 루핑 및 분기에 의하여 실행의 흐름을 종료시킵니다.
이 섹션에서는 자바 프로그래밍 언어가 지원하는, 의사-결정 명령문(
if-thenif-then-elseswitch), 루프 명령문(forwhiledo-while), 그리고 분기 명령문 (break,continuereturn)을 설명합니다.

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-thenif-then-elseswitch), the looping statements (forwhiledo-while), and the branching statements (break,continuereturn) supported by the Java programming language.


반응형

댓글