728x90

forEach

배열과 컬렉션에 저장된 요소에 접근하기 할 때 편리한 방법으로 처리할 수 있도록 for문의 새로운 문법 추가

for (type var : iterate) {
    body-of-loop
}

 

forEach 예제

String[] str = {"aa", "bb", "cc"};
for (String el : str) {
    System.out.print(el + " ");
}
// aa bb cc

int[] arr = {1, 2, 3, 4, 5};
for(int x : arr){	
	System.out.print(x + " ");
}
// 1 2 3 4 5
728x90

+ Recent posts