태그가 있는break와continue

918 단어 continue
enum Size {
	BIG, SMALL
};
public class Test {
	public static strictfp void main(String[] args) throws InterruptedException {
		//     case    
		Size size = Size.SMALL;
		switch(size){
			case SMALL:
				System.out.println("  ");
				break;
			case BIG:
				System.out.println("  ");
				break;
		}
		//    break
		int i = 0;
		loop:
		while (true) {
			while (true) {
				i++;
				System.out.println(i);
				if (i == 100) break loop;
			}
		}
		//    continue
		loop1:
		while(true){
			i++;
			System.out.println(i);
			if(i == 200) {
				i = 100;
				continue loop1;
			}
			break;
		}
	}
}

여기서 주의해야 할 것은 표지는 반드시 순환 밖에서 시작해야 한다는 것이다. 즉, 표지와 순환체 사이에 다른 코드가 있어서는 안 된다는 것이다.

좋은 웹페이지 즐겨찾기