Java의 for 루프에서 벗어나기
Haider Ali
2023년10월12일
이 가이드는 Java의 for
루프에서 벗어나는 방법을 알려줍니다. 프로그래밍에서 특정 조건은 해당 문제에 대해 for 루프 또는 기타 루프를 중단해야 합니다. 한 번 보자.
Java의 for
루프 탈출
루프의 현재 반복을 중단하는 방법은 이보다 더 간단할 수 없습니다. break
만 사용하면 프로그램이 해당 루프에서 빠져 나옵니다. 아래의 코드 예제는 설명이 필요 없습니다.
public class Main {
public static void main(String[] args) {
// break statement is use to break loop at any point of iteration.
for (int i = 0; i < 10; i++) {
if (i == 5) {
break; // breaking 5th iteration
}
System.out.println(i);
}
}
}
출력:
0
1
2
3
4
보시다시피, 단순히 break;
명령을 작성하여 반복을 중지하고 루프에서 뛰어내렸습니다.
작가: Haider Ali
Haider specializes in technical writing. He has a solid background in computer science that allows him to create engaging, original, and compelling technical tutorials. In his free time, he enjoys adding new skills to his repertoire and watching Netflix.
LinkedIn