Well in a loop you wouldn't see this difference. The value will always increment. To understand prefix and postfix increments consider following example
static int x = 0;
public static void main(
String[] args) {
System.out.println ("The value of x: " + x++); //output 0
System.out.println ("The value of x: " + x); //output 1
System.out.println ("The value of x: " + ++x); //output 2
}
In first output current value of x will output and then it will be incremented
In last output statement value is incremented and and 2 will output on console.
As far as your example goes I don't think there will be any difference on the output.
I hope this helps.