how to exit for loop in java code example
Example 1: how to exit a for loop in java
int [] numbers = {10, 20, 30, 40, 50};
for(int x : numbers ) {
if( x == 30 ) {
break;
}
System.out.print( x );
}
}
}
Example 2: break a function java
public void someMethod() {
//... a bunch of code ...
if (someCondition()) {
return; //break the funtion
}
//... otherwise do the following...
}
Example 3: java how to exit loop
//how to exit loop in java
while (true) {
if (obj == null) {
break;
}
}