Continue statement in Java with sample


Continue: The continue statement is used in many programming languages such as C, C++, java etc. Sometimes we do not need to execute some statements under the loop then we use the continue statement that stops the normal flow of the control and control returns to the loop without executing the statements written after the continue statement. There is the difference between break and continue statement that the break statement exit control from the loop but continue statement keeps continuity in loop without executing the statement written after the continue statement according to the conditions.


In this program we will see that how the continue statement is used to stop the execution after that.

- no title specified

- no title specified- no title specified- no title specified- no title specified

public class Continue {

public static void main(String[] args) {

Thread t = new Thread();

try {

for (int i = 1; i < 10; i++) {

if (i == 5) {

continue;

// break now and continue the loop.

}

t.sleep(1000);

System.out.println("Value of i : " + i);

}

} catch (InterruptedException e) {

}

}

}







No comments:

Post a Comment