What is the best way to exit/terminate a while loop in Java?
For example, my code is currently as follows:
while(true){
if(obj == null){
You can do multiple condition logical tests within the while() check using the same rules as within any logical check.
while ( obj != null ) {
// do stuff
}
works, as does
while ( value > 5 && value < 10 ) {
// do stuff
}
are valid. The conditionals are checked on each iteration through the loop. As soon as one doesn't match, the while() loop is exited. You can also use break;
while ( value > 5 ) {
if ( value > 10 ) { break; }
...
}