how to get out of a while loop java code example
Example 1: how to break out for loop java
//Java Program to demonstrate the use of break statement
//inside the for loop.
public class BreakExample {
public static void main(String[] args) {
//using for loop
for(int i=1;i<=10;i++){
if(i==5){
//breaking the loop
break;
}
System.out.println(i);
}
}
}
Example 2: java how to exit loop
//how to exit loop in java
while (true) {
if (obj == null) {
break;
}
}