
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is a continue statement in Java and how to use it?
The continue keyword can be used in any of the loop control structures. It causes the loop to immediately jump to the next iteration of the loop.
- In a for loop, the continue keyword causes control to immediately jump to the update statement.
- In a while loop or do/while loop, control immediately jumps to the Boolean expression.
Syntax
The syntax of a continue is a single statement inside any loop −
continue;
Example
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"); } } }
Output
10 20 40 50
- Related Questions & Answers
- What is a break statement in Java and how to use it?
- What is a switch case statement in Java and how to use it?
- What is continue statement in JavaScript?
- How to use continue statement in Python loop?
- What is the ‘if’ statement in Java and how to use it?
- What is the ‘if else’ statement in Java and how to use it?
- What is the ‘nested if’ statement in Java and how to use it?
- Java continue statement with Loop
- How to use break and continue statements in Java?
- How can I use a label with continue statement in JavaScript?
- What is the ‘if...else if...else’ statement in Java and how to use it?
- What is method hiding in Java and how to use it?
- PHP continue Statement
- Can we use continue statement in a Python if clause?
- How do we use continue statement in a while loop in C#?
Advertisements