break 문은 루프를 종료하고 루프 바로 다음 문으로 실행을 전달합니다.
Continue 문은 루프가 본문의 나머지 부분을 건너뛰고 반복하기 전에 즉시 조건을 다시 테스트하도록 합니다.
루프 내에서 break 문을 만나면 루프가 즉시 종료되고 루프 뒤의 다음 문에서 프로그램 제어가 복원됩니다.
C#의 continue 문은 break 문과 약간 비슷하게 작동합니다. 그러나 강제로 종료하는 대신 continue는 루프의 다음 반복을 강제로 실행하고 그 사이의 모든 코드를 건너뜁니다.
다음은 while 루프에서 continue 문을 사용하기 위한 전체 코드입니다. -
using System; namespace Demo { class Program { static void Main(string[] args) { /* local variable definition */ int a = 10; /* loop execution */ while (a > 20) { if (a == 15) { /* skip the iteration */ a = a + 1; continue; } Console.WriteLine("value of a: {0}", a); a++; } Console.ReadLine(); } } }
여기는 break 문의 예입니다. -
using System; namespace Demo { class Program { static void Main(string[] args) { /* local variable definition */ int a = 10; /* while loop execution */ while (a < 20) { Console.WriteLine("value of a: {0}", a); a++; if (a > 15) { /* terminate the loop using break statement */ break; } } Console.ReadLine(); } } }
위 내용은 C#에서 break 문과 continue 문의 차이점은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!