출처: https://bumcrush.tistory.com/182 [맑음때때로 여름]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
 
// continue : 생략(skip)
/* 
      Loop문과 같이 사용
      
      
      while(){
          처리1
          처리2
          처리3
          if(조건식){
              continue;
          }
          처리4
          
          연산식
          }
 */
        
        //예제1)
        
        for(int i=0 ; i<10; i++) {
            System.out.println("for start");
            System.out.println("i = "+i);
            
            if (i>4) {
                continue;
            }
            System.out.println("for end"); // i=5일때는 for end가 출력되지 않는다
        }
        
        
        //예제2)
        
        int w=0;
        while (w<10) {
            System.out.println("while start");
            System.out.println("w = "+w);
            w++;     // 여기에 써야 무한루프X
            if(w>4) {
                continue;
            }
            System.out.println("while end");
             // w++; // 여기있으면 연산자가 아래있어서 무한루프에 걸리게 된다.
        }
    
cs

'JAVA > basic' 카테고리의 다른 글

파이널 / 상수 / final / 변수 고정  (0) 2020.09.28
실수 연산의 오류  (0) 2020.09.28
자료형의 종류와 구분 / 변수 / 변수의 기본값과 초기화  (0) 2020.09.28
Break 문  (0) 2020.09.24
Loop 문 ( Do while 문 )  (0) 2020.09.24
Loop문 ( while 문 )  (0) 2020.09.24
Loop문 ( foreach 문 ) / 배열과 foreach문  (0) 2020.09.23

+ Recent posts