Notice
Recent Posts
Recent Comments
«   2024/11   »
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
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

5.10 향상된 for 문 본문

이것이 자바다/05 참조 타입

5.10 향상된 for 문

빌드이너프 2024. 4. 1. 07:37

향상된 for 문

배열 및 컬렉션을 좀 더 쉽게 처리할 목적으로 향상된 for 문을 제공

카운터 변수와 증감식을 사용하지 않고, 항목의 개수만큼 반복한 후 자동으로 for문을 빠져나간다

package ch05.sec10;

import java.util.Iterator;

public class AdvancedForExample {
	public static void main(String[] args) {
		int[] scores = { 1, 2, 3, 4, 5 };
		
		int sum = 0;
		
        //향상된 for 문
		for(int score : scores) {
			sum += score;
		}
		
		System.out.println(sum);
	}
}
15