Menu

#13 The loop 'For' is not well supported.

open
nobody
None
5
2008-09-05
2008-09-05
Erich Ye
No

A 'for' statement is decompiled in such a way as:

found=false;
j=0;
while(true)
{
if(j >= this.webInfFolders.size())
{
break;
}

}
j = j+1;
continue ;

}

The original statement is like:
for (int j = 0; j < this.webInfFolders.size(); ++j)
{...}

Discussion


Log in to post a comment.