Hi, i was wonder if the expression:
++j
is faster than
j++
Let's think to a for cycle:
for(j=0; j<array.length; ++j) {
foo.staff();
}
at the last cycle, after the foo.staff() execution, what...