
Quick Contact
Java Tutorial
- What is Java?
- History of Java
- Hello Java Program
- Features of Java
- Basic Syntax
- Java Setup
- Data Types in Java
- Java Variables
- Operators in Java
- JVM
- Java If-else Statement
- Switch Case Statement
- Java Loops
- Do-While Loop
- Java While Loop
- Continue Statement
- Break Statement in Java
- Constructors in Java
- Oops Concept in Java
- Features of OOPs
- Inheritance
- Exeception handeling
- Aggregation (HAS-A relationship) in Java
- Method Overriding in Java
- Method Overloading
- Java Static Keyword
- Java This Keyword
- Java Final Keyword
- Polymorphism
- Static Binding and Dynamic Binding
- Abstract class in Java
- Access Modifiers in Java
- Difference between abstract class and interface
- Interface in Java
- Garbage Collection in Java
- Java Package
- Encapsulation
- Serialization and Deserialization in Java
- Java Inner Classes
- Java Applets
- Multithreading in Java
- Thread Priorities in Java
- Thread Creation
- Inter Thread Communication
- Wrapper Classes in Java
- Java Input Output
- Java AWT Introduction
- Java Layout Manager
- Java Layout Policy
- Java AWT Events
- Collection Framework
- Collection Framework List Interface
- Swing in Java
- Swing Utility Classes
- Swing Layout Managers
- Java JDBC
- Hibernate Framework Overview – Architecture and Basics
Springboot
- Spring Environment Setup
- Spring Boot CRUD REST API Project using IntelliJ IDEA | Postman | MySQL
- Dockerizing Spring Boot Application | Spring Boot Docker Tutorial
- spring-boot-restapidocumentation with swagger
- Spring Boot HttpClient Overview
- Apache HttpClient POST HTTP Request Example
- Apache HttpClient PUT HTTP Request Example
- Apache HttpClient DELETE HTTP Request Example
- Apache HttpClient HTML Form POST Request Example
- Spring Boot JSP Exampl
- Deploying Spring Boot WAR file with JSP to Tomcat
- Spring Boot Annotations
- Spring Core Annotations
- Spring MVC Annotations with Examples
- Spring Scheduling Annotations
- Spring - Java-based Container Configuration
- Spring Java Based Configuration Example
Hibernate
- Hibernate 5 hello world
- Hibernate- One to One Unidirectional Mapping Annotation Example
- Hibernate - Batch Processing
- Hibernate - Interceptors
- Hibernate 5 - Create, Read, Update and Delete (CRUD) Operations Example
- Hibernate Transaction Management
- Hibernate One to Many Unidirectional Mapping Example
- Hibernate One to Many Bidirectional Mapping Example
- Hibernate Many to Many Annotation Mapping Example
- Hibernate Primary KeyJoin Column
- Hibernate First Level Cache with Example
- Hibernate XML Configuration Example with Maven + Eclipse + MySQL Database
- Hibernate Java Configuration Example
- JPA 2 with Hibernate 5 Bootstrapping Example
- JPA and Hibernate Cascade Types
- Hibernate/JPA - Primary Key Generation
- Hibernate 5 - Enum Type Mapping Example
- Hibernate Component Mapping
- Hibernate Object States – Transient,Persistent and Detached
- Hibernate 5 - Save an Entity Example
- Hibernate 5 - Persist an Entity Example
- Hibernate 5 - saveOrUpdate() Method Example
- Hibernate 5 - get(), load() and byId() Method Examples
- Hibernate 5 - merge() Example
- Hibernate 5 - Delete or Remove an Entity Example
- Hibernate 5 - load() Method Example
- Hibernate Session Interface Methods
- Hibernate Session.clear() Method Example
- Introduction Of Java strutes to Architecture
- Struts 2 - Architecture
- Struts 2 - Configuration Files
- Struts 2 - Actions
- Struts 2 - Interceptors
- Struts 2 - Results & Result Types
- Struts 2 - Value Stack/OGNL
- Struts 2 - File Uploading
- Struts 2 - Database Access
- Struts 2 - Validations Framework
JAVA FX
- JavaFX Tutorial
- Introduction to JavaFX Pane
- JavaFX Popup
- JavaFX group
- JavaFX Controller
- JavaFX Gradient Color
- JavaFXAnchorPane
- JavaFXTabPane
- JavaFX Scene
- JavaFX Stage
- JavaFXWebView
- JavaFX Timeline
- JavaFX Timer
- JavaFX Image
- JavaFX Background
- JavaFX dialog
- JavaFX Font
- JavaFXTextArea
- JavaFXObservableList
- JavaFX GUI
- JavaFX FXML
- JavaFXEventHandler
- JavaFXGradle
- JavafxScrollpane
- JavaFXAPI
Continue statement
The continue statement does not break a loop, but can be used to skip certain steps based on a condition. So it basically, stops the current step of the loop and moves to the next one, so we can say that this statement continues the loop.
Continue statement can be used with for loop or while loop.
Syntax
jump-statement;
continue; // continue word followed by semi colon.
Example
class ContinueExample {
public static void main(String args[]){
for (int X=1; X<=5; X++)
{
if (X==3)
{
continue;
}
System.out.print(X+” “);
}
}
}
Output
1 2 3 4
Explanation:
In above example we see, value 3 is missing in output because when value of variable X is 3, program bear a continue statement and skip the rest statement.
Flowchart of continue statement

Java continue in while Loop
class ContinueWhileExample {
public static void main(String args[]){
//while loop
int X=10;
{
if (X==4)
//use continue statement
{
X–;
continue; //skip rest statement
}
System.out.print(X+” “);
X–;
}
}
}
Output
10 9 8 7 6 5 3 2 1 0
Explanation:
We are repeating this loop from 10 to 0 for X value. When X value is 4 the loop skipped the print statement and started next repetition of the while loop.
Java continue in do-while Loop
class ContinueDoWhileExample {
public static void main(String args[]){
//variable declare
int X=0;
//do-while loop
do
{
if (X==4)
{
//use continue statement
X++;
continue; //skip rest statement
}
System.oufor (int Y = 0; Y < 3; ++Y) {t.print(X+ " ");
X++;
}while(X<10);
}
}
Output
0 1 2 3 5 6 7 8 9
Java continue with labeled For Loop
The continue statement can be used with labels too.
Example
class ContinueLabeledExample {
public static final int arr[] = {5, 1, 4, 2, 3};
public static void main(String[] args) {
for (int X = 0; X < 3; ++X) {
for (int Y = 0; Y < 3; ++Y) {
for (int Z = 0; Z < 3; ++Z) {
if (Z == 1){
continue;
}
System.out.println(“(X, Y, Z) = (” + X + “,” + Y + “,” + Z + “)”);
}
}
}
}
}
Output
(X, Y, Z) = (0,0,0)
(X, Y, Z) = (0,0,2)
(X, Y, Z) = (0,1,0)
(X, Y, Z) = (0,1,2)
(X, Y, Z) = (0,2,0)
(X, Y, Z) = (0,2,2)
(X, Y, Z) = (1,0,0)
(X, Y, Z) = (1,0,2)
(X, Y, Z) = (1,1,0)
(X, Y, Z) = (1,1,2)
(X, Y, Z) = (1,2,0)
(X, Y, Z) = (1,2,2)
(X, Y, Z) = (2,0,0)
(X, Y, Z) = (2,0,2)
(X, Y, Z) = (2,1,0)
(X, Y, Z) = (2,1,2)
(X, Y, Z) = (2,2,0)
(X, Y, Z) = (2,2,2)
Explanation:
Here in output, to see that what combinations are printed. We clearly notice that no combination with
Z=1 has printed.
Apply now for Advanced Java Training Course