The continue keyword can be utilized in some of the loops manage designs. It reasons the loop to right-away jump to the next iteration of the loop.
The syntax of a continue is a single statement inside any loop:
continue;
public class Test { public static void main(String args[]) { int [] numbers = {10, 20, 30, 40, 50}; for(int x : numbers ) { if( x == 30 ) { continue; } System.out.print( x ); System.out.print("\n"); } } }
This will produce the following result:
10 20 40 50
Here at Intellinuts, we have created a complete Java tutorial for Beginners to get started in Java.