次のコードがあるとします。デバッグ中、Eclipse が 100 万回の繰り返しを行ったときに停止するようにします。これを行う方法?手動で100万回はできません。
for(int i = 0; i < 10000000; i++) {
//some code
}
その場合は、次のようにします。
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
}