Java의 Continue 문은 분기 문 범주에 속합니다. 다른 분기 문은 break 및 return 문입니다. Continue는 Java의 51개 키워드 중 하나입니다. Java의 키워드는 특정 목적을 가진 예약어라고도 합니다. 이러한 키워드는 변수 이름, 메소드 이름, 클래스 이름으로 사용되어서는 안 됩니다. Java 코드에서 continue 문을 작성하는 목적은 for, while 및 do-while과 같은 루프의 현재 반복을 건너뛰는 것입니다. 제어는 대부분 동일한 루프(깨지지 않은 경우)로 처리되거나(현재 루프가 깨진 경우) 코드의 다음 문으로 전달됩니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
continue 문은 C 및 C++와 같은 다른 프로그래밍 언어의 경우에도 동일한 목적으로 사용됩니다. 이는 C 및 C++의 키워드이기도 합니다. continue 문은 break 문과 정반대입니다. break 문을 만나면 자동으로 루프가 중단됩니다. return 문은 프로그램에서 완전히 종료됩니다. return과 break는 모두 C, C++, Java의 경우 예약된 키워드입니다. 둘 중 어느 것도 변수, 메소드 또는 클래스의 이름을 지정하는 데 사용되어서는 안 됩니다.
구문:
for (i =0; i<max; i++) // for loop is a sample loop, max is the maximum count at which the loop breaks { <Statements> //code statements If (done with this iteration) // if this condition validates to true the continue statement is executed { Continue; // statement itself } <Statements> // code statements }
다음은 Java 명령문의 몇 가지 예입니다.
for 루프를 사용한 Continue 문 사용
코드:
public class DemoContinueUsingFor { public static void main(String[] args){ for(int p=0;p<6;p++){ if(p==3){ continue; } System.out.print(p+" "); } } }
출력:
설명:
출력:
while 루프를 사용한 Continue 문 사용
코드:
public class DemoContinueUsingWhile { public static void main(String[] args){ int max = 0; while(max <= 10){ if(max == 6){ max++; continue; } System.out.print(max+" "); max++; } } }
출력:
설명:
코드:
public class DemoContinueUsingWhile { public static void main(String[] args){ int max = 0; while(max <= 10){ if(max == 6){ continue; max++; // Here the max ++ is written after continue statement } System.out.println(max+" "); } } }
설명:
출력:
do-while 루프가 포함된 Continue 문 사용
코드:
public class DemoContinueUsingDoWhile { public static void main(String[] args) { int k=10; do { if (k==6) { k--; continue; } System.out.print(k+ " "); k--; } while(k>0); } }
출력:
설명:
위 기사에서는 continue 문의 목적을 설명합니다. 제공된 세 가지 예는 실시간 시나리오에서의 사용법을 명확하게 설명합니다. For, while, do-while 등을 예로 들어 이를 토대로 continue 문의 사용법을 설명합니다. continue와 마찬가지로 break 및 return이라는 명령문이 2개 더 있는데, 이는 Java 엔터프라이즈 애플리케이션에서 고유한 목적과 응용 프로그램을 가지고 있습니다.
위 내용은 Java의 Continue 문의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!