점프문

sunj - Jul 23 - - Dev Community
  1. break 반복문이나 switch문의 실행을 중단
Console.WriteLine("A");
while(조건1)
{
   if(조건2)
      break;
   Console.WriteLine("B1");
   Console.WriteLine("B2");
}

Console.WriteLine("C");
Enter fullscreen mode Exit fullscreen mode
  1. continue 반복을 건너 뛰어 반복을 계속 수행
Console.WriteLine("A");
while(조건1)
{
   if(조건2)
     continue;
   Console.WriteLine("B1");
   Console.WriteLine("B2");
}
Console.WriteLine("C");
Enter fullscreen mode Exit fullscreen mode
  1. goto 지정한 레이블로 제어를 이동
Console.WriteLine("A");
if(조건2)
   goto 레이블1;
Console.WriteLine("B");

레이블1:
Console.WriteLine("C");
Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player