본문 바로가기

Programming/Java

자바 foreach

반응형

String[] temp = {"aa", "bb", "cc"}


for

for(int i=0; i<temp.length; i++){
    System.out.println( temp[i] );

}

foreach

for(String str : temp){
    System.out.println( str );

}

반응형