Javatpoint Logo
Javatpoint Logo

Transfer Statements in Java

In Java, transfer statements are a set of keywords that allow you to control the flow of execution within a program. They provide mechanisms for altering the default sequence of control flow in loops and conditional blocks. These statements include break, continue, and return. Let's take a closer look at each of them and explore their usage in different scenarios.

1. Java break Statement

The break statement is used to terminate the execution of a loop prematurely. When a break statement is encountered, the control flow immediately exits the loop, and the program continues with the next statement after the loop. This is particularly useful when you want to exit a loop early under certain conditions.

Example:

In this example, the loop will print the numbers from 1 to 4 and then exit when i equals 5.

2. Java continue Statement

The continue statement is used to skip the rest of the loop's body for the current iteration and proceed with the next iteration. It is typically used when you want to skip certain iterations based on a condition without terminating the entire loop.

Example:

In this example, the loop will print only the odd numbers from 1 to 9, skipping even numbers.

3. Java return Statement

The return statement is used to exit a method and return a value to the caller. It can also be used to return early from a method before it reaches the end. If a method has a return type other than void, it must return a value of the correct type.

Example:

In this example, the method add takes two integers, a and b, and returns their sum.

Use Cases and Best Practices

1. break

  • When you want to exit a loop prematurely based on a condition.
  • It's commonly used in loops when searching for a specific item or condition.

2. continue

  • When you want to skip certain iterations of a loop based on a condition.
  • Useful when you want to process only specific items in a collection.

3. return

  • To exit a method and return a value to the caller.
  • When you want to return early from a method based on a specific condition.

Below is a complete Java program that demonstrates the use of transfer statements (break, continue, and return):

TransferStatementsExample.java

Output:

Example of break statement:
1
2
3
4

Example of continue statement:
1
3
5
7
9

Example of return statement:
The sum is: 7

Explanation

The first part of the program demonstrates the use of break statement in a loop. It prints numbers from 1 to 4, then exits the loop when i equals 5.

The second part demonstrates the use of continue statement in a loop. It prints only the odd numbers from 1 to 9, skipping even numbers.

The third part shows the use of return statement in a method. The add method takes two integers, a and b, and returns their sum. The result is then printed in the main() method.

Transfer statements in Java provide essential tools for controlling the flow of execution in loops and methods. Understanding when and how to use break, continue, and return statements can help you write more efficient and readable code. Remember to use them judiciously and in a way that enhances the clarity and logic of Java programs.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA