For each loop in java

int i[] = {1,2,3,4,5};

for( int temp_var : i )

{

// process it

}


its simple as in we do in c# but

instead of "in" keyword in .net we write ' : '

and here we only write 'for' only.