我有下面的一段代码来遍历一个列表,检查一个特定的值,然后终止循环。如果可能,您能否建议使用 lambda 表达式的更好方法?
for(InvoiceLine invoiceLine : inputInvoice.getInvoiceLines()) {
Object flag = invoiceLine.getTransientField("ApproveInvoiceLine");
if(flag != null && ((Boolean)flag)) {
approveInv = true;
break;
}
}
隔江千里
倚天杖
相关分类