我有一个用于遍历数组列表的 for 循环,一旦找到我需要的对象,我想在该对象的 set 方法中设置先前获得的对象,将“未找到”的标志设置为 false 和然后跳出循环。之后,如果未找到标志仍然为真,我想抛出异常,否则就到方法的结尾。
我想我要么滥用了 break 或 for 循环。我不断地抛出异常。
注意,'items' 是 LibraryItems 的数组列表。
for(LibraryItem l : items) {
if(l.equals(item)) {
l.setCheckedOut(patronToRetrieve);
itemNotFound = false;
break;
} else {
itemNotFound = true;
}
}
if (itemNotFound = true) {
throw new CheckInOutException("The item " + item.getTitle() + " does not exist in the catalogue. Sorry, " + patronToRetrieve.getName() + ", you will not be able to check this out at this time.");
} else {
}