Java Boolean in a loop
Reading about Lookups I found new(for me) and awesome way to manage boolean value used for controlling loops:
boolean valid = false;
while(!valid){
id = this.getId();
valid = true;
for(IdValidator validator : rstl.allInstances()){
valid = valid && validator.validate(id);
}
}
Using &&
really make me thinking why I didn't figure it out yet!
Want to learn more?
Sign up to get a digest of my articles and interesting links via email every month.