Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

Java에서 while 루프와 do-while 루프의 차이점은 무엇입니까?

<시간/>

Java의 while 루프는 각 반복이 시작될 때 루프 연속 조건을 테스트한 후 하나 이상의 명령문을 실행합니다. 그러나 do-while 루프는 첫 번째 반복이 완료된 후 루프 연속 조건을 테스트합니다. 따라서 do-while 루프는 루프 논리의 한 번 실행을 보장하지만 while은 그렇지 않습니다.

public class WhileAndDoWhileLoop {
   public static void main(String args[]) {
      int i=5;
      System.out.println("Test while Loop:");
      while(i < 5) {
         System.out.println("Iteration: "+ ++i);
      }
      System.out.println("Test do-while Loop:");
      i=5;
      do {
         System.out.println("Iteration: "+ ++i);
      } while(i < 5);
   }
}

위의 예에서 while 루프 문은 전혀 실행되지 않습니다. 그러나 do-while 루프의 한 번의 반복이 실행됩니다.

출력

Test while Loop:
Test do-while Loop:
Iteration: 6