Is there any case that the program will skip continue
? This is the code:
while(/*something*/){
if(/*something*/){
while(true) {
//do something
}
System.out.print("Hello");
continue;
}
//do something2
}
I would put my whole code but it's very long to trace. i want to know if there is a known cases that the continue
will be skipped. My program enters the big while-loop, enters if-statement but sometimes it doesn't continue and skip to //do something2
. There is no breaks or anything like that.