Java provides the break keyword that is used by the developers to exit out of the loop before the actual completion of the loop. Additionally , the break keyword can also be used to jump out of a single case in switch statement.
Break Statement in Java
Below is a sample code snippet demonstrating the usage of the break statement in java.
package com.abundantcode;
import java.util.ArrayList;
import java.util.List;
public class Main {
public static void main(String[] args)
{
List<String> input = new ArrayList<String>();
input.add("Abundantcode.com");
input.add("Programming Website");
input.add("Java Tutorials");
for(String item:input)
{
System.out.println(item);
break;
}
}
}
Leave a Reply