Possible Duplicates:
Loop counter in Java API
Which of these pieces of code is faster in Java?
for(int i = 100000; i > 0; i--) {}
for(int i = 1; i < 100001; i++) {}
Which one is faster?I read that first for loop is faster.is it true?Then how it become faster than other?please help.