- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to use ‘for loop’ in Java?
A for loop is a repetition control structure that allows you to efficiently write a loop that needs to be executed a specific number of times.
A for loop is useful when you know how many times a task is to be repeated.
Syntax
The syntax of a for loop is:
for(initialization; Boolean_expression; update) { // Statements }
Here is the flow of control in a for loop −
- The initialization step is executed first, and only once. This step allows you to declare and initialize any loop control variables and this step ends with a semicolon (;).
- Next, the Boolean expression is evaluated. If it is true, the body of the loop is executed. If it is false, the body of the loop will not be executed and control jumps to the next statement past the for a loop.
- After the body of the for loop gets executed, the control jumps back up to the update statement. This statement allows you to update any loop control variables. This statement can be left blank with a semicolon at the end.
- The Boolean expression is now evaluated again. If it is true, the loop executes and the process repeats (body of the loop, then update step, then Boolean expression). After the Boolean expression is false, the for loop terminates.
Example
public class Test { public static void main(String args[]) { for(int x = 10; x < 20; x = x + 1) { System.out.print("value of x : " + x ); System.out.print("
"); } } }
Output
value of x : 10 value of x : 11 value of x : 12 value of x : 13 value of x : 14 value of x : 15 value of x : 16 value of x : 17 value of x : 18 value of x : 19
- Related Articles
- How to use for each loop through an array in Java?
- How to use for loop in Python?
- How to use ‘while loop’ in Java?
- How to use nested for loop in JavaScript?
- How to use ‘do while loop’ in Java?
- How to use FOR LOOP in MySQL Stored Procedure?
- How to use else conditional statement with for loop in python?
- How to use range-based for() loop with std::map?
- How to use PowerShell break statement with the For loop?
- Java for loop
- How to use for...in statement to loop through an Array in JavaScript?
- How to iterate a List using for Loop in Java?
- How to iterate a Java List using For Loop?
- Java labelled for loop
- Java infinite for loop

Advertisements