vote up 1 vote down star

Is it different than C or C#?

flag

4 Answers

vote up 14 vote down check

Java has one keyword, for, but it can be used in two different manner:

/* classical, C/C++ school */
for (int i = 0; i < N; i++) {

}

for-each style:

// more object oriented, since you use implicitly an Iterator 
// without exposing any representation details 
for (String a : anyIterable) {

}

it works for any type that implements Iterable<String> such as List<String>, Set<String>, etc.

The latter form works also for arrays, see this question for a more "phisophical approach".

link|flag
vote up 3 vote down

The following demonstrates the syntax of a java for loop (from the for loop in Java):

class Hello {
   public static void main (String args[]) {

     System.out.print("Hello ");   // Say Hello
     for (int i = 0; i < args.length; i = i + 1) { // Test and Loop
       System.out.print(args[i]);  
       System.out.print(" ");
     }
     System.out.println();  // Finish the line
   }
}

Also see the Wiki entry on For loop

link|flag
+1 for demonstrating instead of just linking – indyK1ng Aug 6 at 22:52
I'm interested why you did i = i + 1 instead of just i++. Was it just you being verbose or do you have another reason? I've just never seen that used in a very long time. – MattC Aug 6 at 23:20
@MattC - Didn't write it, just grabbed it from the website referenced. – LFSR Consulting Aug 7 at 13:57
vote up 1 vote down

The only difference between java's for-loop syntax and C's is you can declare variables in the initialization field (1st section) of the loop

link|flag
IIRC C99 allows declarations like this: for (int i = ... ) – dfa Aug 6 at 23:10
vote up -1 vote down

Check this link for yourself.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.