java

Jump Statements in Java

In this tutorial, we will learn about the Jump Statements in Java, or its types, and how to use them with the help of examples. Jump statements are use to unconditionally transfer program control from one point to elsewhere in the program. Jump statements are primarily use to interrupt loop or switch-case instantly. 
Java supports three jump statements: 
Break Statement
Continue Statement
Return Statement.