本文主要是介绍跳出两层for循环,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
以前我是用一个flag来标识是否跳出,现看到有下列的用法 out:for(SearchCompanySearchResultsType result : results){
IdentityInfoType[] reusultInfoTypes = result.getCompanyIdentity();
for(IdentityInfoType reusultInfoType : reusultInfoTypes){
if(tenantOwner.equals(reusultInfoType.getIdentityOwnerValue())){
hasMatchedTenantOwnerInWS = true;
log.info("Find matched TenantOwner in Web Service ... ");
break out;
}
}
}
这篇关于跳出两层for循环的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!