9

次のコードがあるとします。デバッグ中、Eclipse が 100 万回の繰り返しを行ったときに停止するようにします。これを行う方法?手動で100万回はできません。

for(int i = 0; i < 10000000; i++) {
    //some code
}
4

3 に答える 3

4

その場合は、次のようにします。

for(int i = 0; i < 10000000; i++)
{
    if(i==1000000){
       // do nothing  ....
       // this is just a dummy place to make eclipse stop after million iterations
       // just put a break point here and run the code until it reaches this breakpoint
       // remove this if condition from your code after you have debugged your problem
    }

    //your code
}
于 2013-10-07T03:39:17.123 に答える